我想在我的页面上显示纬度和经度,就像我们在谷歌地图中搜索一样,例如,如果我进入Comfort Inn Sunset,那么它会在文本框中显示纬度和经度。
所以请尽快帮助我。
答案 0 :(得分:1)
您可以在以下网站上手动执行此操作:
或
答案 1 :(得分:0)
请参阅以下链接。
geocoder.geocode({ 'address': addresscity }, function (results, status) {
if (status == google.maps.GeocoderStatus.OK) {
latitude = results[0].geometry.location.lat();
longitude = results[0].geometry.location.lng();
document.getElementById("lat").value= latitude;
document.getElementById("lon").value= longitude;
var myLatlng = new google.maps.LatLng(latitude, longitude);
var mapOptions = {
center: new google.maps.LatLng(latitude, longitude),
zoom: 8,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
});