Google Maps API をつかって現在地の住所を割り出す。

今日は、Google Maps API をつかって現在地の割り出しを行ってみたいと思います。 // Google Maps API の読み込み <script src="http://maps.google.com/maps/api/js?sensor=false"></script> // 現在地の割り出し <script> (function(win, doc) { "use strict"; win.onload = function() { var geocoder = new google.maps.Geocoder; init(); function init(evt) { // …