緯度経度から都市名を取得したいです。次のコードを使用していますが、都市名、郵便番号、州、国を含む住所全体を返しています。都市名だけが欲しいです。
$.ajax({ url:'http://maps.googleapis.com/maps/api/geocode/json?latlng='+position.coords.latitude+','+position.coords.longitude+'&sensor=true',
success: function(data){
alert(data.results[4].formatted_address);
}
});
ジオコーディングの結果をご覧ください
{
"long_name" : "Vancouver",
"short_name" : "Vancouver",
"types" : [ "locality", "political" ]
},