我有一个地址列表(街道、城市、国家、邮编),我想在谷歌地图中找到经纬度来标记它们。那可能吗 ?
问问题
133 次
2 回答
2
我认为地理编码是您正在寻找的。
于 2012-11-13T15:08:57.877 回答
0
是的,谢谢
,这就是我要找的
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);
}
});
}
于 2012-11-13T15:16:15.943 回答