住所 (通り、都市、国、郵便番号) のリストがあり、緯度と経度を見つけて Google マップでマークしたいと考えています。それは可能ですか?
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 に答える