私はただ興味があります。将来のプロジェクトのためかもしれません。Google API を使用して、指定した座標から住所を取得できるかどうかを知りたいです。
質問する
49346 次
3 に答える
42
はい。Google Geocoding と Places API https://developers.google.com/maps/documentation/geocoding/とhttps://developers.google.com/maps/documentation/places/を使用するだけです
例(ここから派生):
var geocoder;
function initialize() {
geocoder = new google.maps.Geocoder();
}
function codeLatLng(lat, lng) {
var latlng = new google.maps.LatLng(lat, lng);
geocoder.geocode({
'latLng': latlng
}, function (results, status) {
if (status === google.maps.GeocoderStatus.OK) {
if (results[1]) {
console.log(results[1]);
} else {
alert('No results found');
}
} else {
alert('Geocoder failed due to: ' + status);
}
});
}
google.maps.event.addDomListener(window, 'load', initialize);
于 2012-04-04T10:07:09.397 に答える