如何使用纬度和频率获取位置名称或城市经度?

时间:2013-03-27 15:29:56

标签: javascript geolocation

我正在使用以下代码,但如何从经度和时间获取城市名称或位置名称。纬度?

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;  
}

1 个答案:

答案 0 :(得分:8)

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