如何获得谷歌地图点?

时间:2011-07-12 19:08:33

标签: php javascript google-maps

如何将返回点转换为与php一起使用的变量?

我有

 function showAddress(address) {
  if (geocoder) {
    geocoder.getLatLng(
      address,
      function(point) {
        if (!point) {
          alert(address + " not found");
        } else {
        alert("Get point" +point);
        /*how to read point as php variable*/
          map.setCenter(point, 15);
        }
      }
    );
  }
}

任何信息?

1 个答案:

答案 0 :(得分:2)

var latLng = point.getLatLng();
var lat = latLng.lat();
var lon = latLng.lng();

pointGMarker,您可以获得 GLatLng使用getLatLng()函数。

Here我开始了解更多信息和示例