2

Google Maps API を使用して、郵便番号に基づいて地図を表示しています。次に、Google のジオコーディング サービス ( https://google-developers.appspot.com/maps/documentation/javascript/examples/geocoding-simple ) を使用して郵便番号を変換しています。緯度と経度に変換して地図を表示します。

Google ページの例では、ボタンを使用してジオコーディング機能を有効にしています。このコードを出発点として使用しました。ただし、ボタンは必要ありません。郵便番号をハードコーディングしたいのです (これは、後でカスタム メタ入力から取得した文字列に置き換えます)。このコードを調整して、アドレス変数で宣言した郵便番号を取得し、ボタンをクリックするのではなく、初期ロード時にロードするにはどうすればよいですか?

これが理にかなっていることを願っています。

<script src="http://maps.googleapis.com/maps/api/js?key=XXX&sensor=false" type="text/javascript"></script>
                                    <script>
                                        var geocoder;
                                        var map;
                                        function initialize() {
                                          geocoder = new google.maps.Geocoder();
                                          var latlng = new google.maps.LatLng(-34.397, 150.644);
                                          var mapOptions = {
                                            zoom: 8,
                                            center: latlng,
                                            mapTypeId: google.maps.MapTypeId.ROADMAP
                                          }
                                          map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
                                        }

                                        function codeAddress() {
                                          var address = 'PO19 1DQ';
                                          geocoder.geocode( { 'address': address}, function(results, status) {
                                            if (status == google.maps.GeocoderStatus.OK) {
                                              map.setCenter(results[0].geometry.location);
                                              var marker = new google.maps.Marker({
                                                  map: map,
                                                  position: results[0].geometry.location
                                              });
                                            } else {
                                              alert('Geocode was not successful for the following reason: ' + status);
                                            }
                                          });
                                        }

                                        google.maps.event.addDomListener(window, 'load', initialize);
                                    </script>
                                    <input type="button" value="Geocode" onclick="codeAddress()">
                                    <div id="map-canvas" style="width:100%;height:300px;"></div>
4

3 に答える 3

1

すでに負荷 eventListenerがあります。

google.maps.event.addDomListener(window, 'load', initialize);

そのcodeAddress()中にメソッドを配置します。

function initialize() {
    geocoder = new google.maps.Geocoder();
    var latlng = new google.maps.LatLng(-34.397, 150.644);
    var mapOptions = {
        zoom: 8,
        center: latlng,
        mapTypeId: google.maps.MapTypeId.ROADMAP
    }
    map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
codeAddress();
}

このフィドルをチェックしてください

于 2013-07-18T13:59:51.703 に答える
1

ジオコードは非同期であり、その時点ではローカライズされていないため、初期化時に行うことはできません。ただし、初期化直後にジオコードを呼び出すことができ、ジオシングが終了するとすぐに中央に配置されます。

function initialize() {
  geocoder = new google.maps.Geocoder();
  var latlng = new google.maps.LatLng(-34.397, 150.644);
  var mapOptions = {
    zoom: 8,
    center: latlng,
    mapTypeId: google.maps.MapTypeId.ROADMAP
  }
  map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
  codeAddress();
}

function codeAddress() {
  var address = 'PO19 1DQ';
  geocoder.geocode( { 'address': address}, function(results, status) {
    if (status == google.maps.GeocoderStatus.OK) {
      map.setCenter(results[0].geometry.location);
      var marker = new google.maps.Marker({
        map: map,
        position: results[0].geometry.location
      });
    } else {
      alert('Geocode was not successful for the following reason: ' + status);
    }
  });
}

もちろん、多少の遅延が発生する可能性があります。これが問題である場合は、次のことができます。

  • 非表示のマップ div を使用して Web ページを初期化し、ジオコーディングの結果が利用可能になったときにそれを表示します
  • ページがロードされた直後にジオコーディングを開始し、ジオコーディングが終了したらマップを初期化します
于 2013-07-18T14:05:18.897 に答える