0

私はこのチュートリアルに従っています - https://developers.google.com/maps/documentation/javascript/examples/geocoding-simple

コード<?php echo the_field('post_code'); ?>を入力しましたが、入力して送信するのではなく、ロード時にジオコーディングしたいと考えています。どうやってやるの?

これは私が持っているものです:

<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
    <script>
var geocoder;
var map;
function initialize() {
  geocoder = new google.maps.Geocoder();
  var latlng = new google.maps.LatLng(52.375599, -3.471680);
  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 = '<?php echo the_field('post_code'); ?>';
  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>
<div id="map-canvas" style="float:left;height:250px; width:625px;margin-top:25px;"></div>
4

2 に答える 2

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

  codeAddress(); // This should do it. Assuming all the code is working.
}
于 2013-05-30T09:56:32.740 に答える
0

codeAddress()パラメータとしてアドレスをinitialize()渡して呼び出します。

function initialize() {
  geocoder = new google.maps.Geocoder();
  var latlng = new google.maps.LatLng(52.375599, -3.471680);
  var mapOptions = {
    zoom: 8,
    center: latlng,
    mapTypeId: google.maps.MapTypeId.ROADMAP
  }
  map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
  codeAddress(address);
}
于 2013-05-30T09:56:58.007 に答える