1

可能重复:
如何通过 Google Maps API 检索纬度和经度?

我想在我的网站上添加一张地图,以我们所在的城镇为位置。它用于在我们的网站上列出镇上的商店。用户需要在地图中定位他们的店铺位置。我们需要得到他们的经纬度位置。可以使用谷歌地图api吗?

4

1 回答 1

1

将此添加到head

<script type="text/javascript" src="http://www.google.com/jsapi?autoload={'modules':[{name:'maps',version:3,other_params:'sensor=false'}]}"></script>

这在一个script标签中:

var geo;
function init() {
    var map_elem = document.getElementById('map-canvas');
    var map = new google.maps.Map(map_elem, {
        center: new google.maps.LatLng(0, 174.8859710),
        zoom: 2,
        minZoom: 2,
        maxZoom: 4,
        mapTypeId: google.maps.MapTypeId.HYBRID
    });
    geo = new google.maps.Geocoder();
    geo.geocode({
        address: 'New Zealand'
    }, function(e) {
        alert(e[0].geometry.location);
    });
}
google.maps.event.addDomListener(window, 'load', init);

根据需要进行调整。

请参阅地理编码服务 - Google Maps JavaScript API v3 - Google Developers

于 2012-08-11T07:39:25.300 回答