13

我正在使用下面的代码,但是如何从经度和纬度中获取城市名称或位置名称?

var x=document.getElementById("location");
function getLocation()
{
    if (navigator.geolocation) {
        navigator.geolocation.getCurrentPosition(showPosition,showError);
    }
    else {
        x.innerHTML="Geolocation is not supported by this browser.";
    }
}

function showPosition(position)
{
    x.innerHTML="Latitude: " + position.coords.latitude + 
        "<br>Longitude: " + position.coords.longitude;  
}
4

1 回答 1

8

您可以使用 Google Maps v3 API 对纬度和经度对执行反向地理编码。您可以在此处找到如何执行此操作的示例:https ://developers.google.com/maps/documentation/geocoding/#ReverseGeocoding 。

于 2013-03-27T15:32:43.983 回答