如何获得位于地图上的指针的纬度和经度?
Posted
技术标签:
【中文标题】如何获得位于地图上的指针的纬度和经度?【英文标题】:How to get latitude and longitude of poiner located on Map? 【发布时间】:2012-04-06 09:56:05 【问题描述】:我目前正在使用 Google API 在 Google 地图上指出位置。
这是google-maps-utility-library-v3
有链接
http://google-maps-utility-library-v3.googlecode.com/svn/trunk/infobox/docs/reference.html
我写了这段代码
<script type="text/javascript">
function initialize()
var secheltLoc = new google.maps.LatLng(49.47216, -123.76307);
var myMapOptions =
zoom: 15
,center: secheltLoc
,mapTypeId: google.maps.MapTypeId.ROADMAP
;
var theMap = new google.maps.Map(document.getElementById("map_canvas"), myMapOptions);
var marker = new google.maps.Marker(
map: theMap,
draggable: true,
position: new google.maps.LatLng(49.47216, -123.76307),
visible: true
);
function getLatLong()
var secheltLoc = new google.maps.LatLng(49.47216, -123.76307);
var myMapOptions =
zoom: 15
,center: secheltLoc
,mapTypeId: google.maps.MapTypeId.ROADMAP
;
var theMap = new google.maps.Map(document.getElementById("map_canvas"), myMapOptions);
var marker = new google.maps.Marker(
map: theMap,
draggable: true,
position: new google.maps.LatLng(49.47216, -123.76307),
visible: true
);
infoBox = new InfoBox(latlng: marker.getPosition());
<!-- var getLat = new InfoBox(); -->
alert(InfoBox.prototype.getPosition);
</script>
<body onload="initialize()">
<div id="map_canvas" style="width:100%; height:50%"></div>
<input type="button" onclick="getLatLong();" />
<div id="letLong"></div>
我想要的是当我点击这个getLatLong()
函数时,我必须获得当前定位的标记纬度经度。
请帮忙, 谢谢
【问题讨论】:
【参考方案1】:试试这个代码:
<script type="text/javascript">
var marker=null;
function initialize()
var secheltLoc = new google.maps.LatLng(49.47216, -123.76307);
var myMapOptions =
zoom:15, center:secheltLoc, mapTypeId:google.maps.MapTypeId.ROADMAP
;
var theMap = new google.maps.Map(document.getElementById("map_canvas"), myMapOptions);
marker = new google.maps.Marker(
map:theMap,
draggable:true,
position:new google.maps.LatLng(49.47216, -123.76307),
visible:true
);
function getLatLong()
alert(marker.position);
</script>
希望对你有所帮助。
【讨论】:
谢谢,我们能用同一个api获取这个lat long的地址吗? 使用地理编码器developers.google.com/maps/documentation/javascript/…以上是关于如何获得位于地图上的指针的纬度和经度?的主要内容,如果未能解决你的问题,请参考以下文章
如何在没有谷歌地图 API 的情况下在我的应用程序中获取经度和纬度?
如何通过对vue js中的每个搜索结果使用模态在谷歌地图上显示json数据获得的纬度和经度?