HTMLベースの地理位置情報を使用して、ユーザーの緯度と経度を取得することができました。
//Check if browser supports W3C Geolocation API
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(successFunction, errorFunction);
}
//Get latitude and longitude;
function successFunction(position) {
var lat = position.coords.latitude;
var long = position.coords.longitude;
}
都市名を表示したいのですが、逆ジオロケーションAPIを使用するのが唯一の方法のようです。リバースジオロケーションに関するGoogleのドキュメントを読みましたが、自分のサイトで出力を取得する方法がわかりません。
これを使用する方法がわかりません"http://maps.googleapis.com/maps/api/geocode/json?latlng='+lat+','+long+'&sensor=true"
。ページに都市名を表示します。
どうすればこれを達成できますか?