我正在编写一个应用程序,用户可以在其中指向 Google Maps 地图中的位置(使用 Google Maps API)。我通过以下方式抢占位置:
google.maps.event.addListener( my_map, 'click', function(mouseEvent){
var position = mouseEvent.latLng;
//position = 41.57187486787156, 0.609094047546364
});
然后,在另一个页面中,我使用从用户标记点抓取的坐标使用 Google 静态地图显示具有所有标记位置的图像:
<img alt="map image" src="http://maps.googleapis.com/maps/api/staticmap?sensor=false&size=550x380&markers=label:A|41.57187486787156, 0.609094047546364">
谷歌静态地图将标记显示在稍微向南的位置。