0

我对这个脚本做了几处修改,但我不喜欢将它更改为从我拥有的 php 变量自动加载地图。

我希望地图加载的地址在 php 变量中$address

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

  function codeAddress() {
    var address = document.getElementById('address').value;
    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);
      }
    });
  }

我从谷歌提供的地图文档中挑选了这段代码。

我想更改它,以便在加载初始化方法时,它会自动转换$address变量转换为 lat 和 long 并将其显示在地图上。我现在让它在按钮上加载 codeAddress() 但希望它成为初始化的一部分!

干杯!

4

1 回答 1

1

您可以查看这篇文章:PHP server side geocoding with Google Maps API v3

只需在服务器端找到lat/lng配对(使用curl

$url = "http://maps.google.com/maps/api/geocode/json?sensor=false&address=Some+Address";    

$c = curl_init();
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($c, CURLOPT_URL, $url);
$contents = curl_exec($c);
curl_close($c);

$resp = json_decode($contents, true);
$location = $resp['results'][0]['geometry']['location']; // (Lat => x, Lng => y)

然后在地图初始化块中渲染它

var myLatlng = new google.maps.LatLng(<?=$Lat;?>, <?=$Lng;?>);
于 2013-04-13T12:23:28.197 回答