使用地点的地址查找坐标

时间:2012-11-13 15:00:25

标签: javascript google-maps

我有一个地址列表(街道,城市,国家,邮编),我想找到lat和long来在谷歌地图上标记它们。 那可能吗?

2 个答案:

答案 0 :(得分:2)

我认为Geocoding正是您所寻找的。

答案 1 :(得分: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);
  }
});

}