0
我有一個地址列表(街道,城市,國家,郵編),我想找到經緯度和長度來標記他們在谷歌地圖。 是可能的嗎?使用地址的地址查找座標
我有一個地址列表(街道,城市,國家,郵編),我想找到經緯度和長度來標記他們在谷歌地圖。 是可能的嗎?使用地址的地址查找座標
我認爲Geocoding是你在找什麼。
是由於
這就是我要找
function codeAddress() {
var address = document.getElementById("address").value;
geocoder.geocode({ 'address': address}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
map.setCenter(results[0].geometry.location);
var marker = new google.maps.Marker({
map: map,
position: results[0].geometry.location
});
} else {
alert("Geocode was not successful for the following reason: " + status);
}
});
}