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 に答える