所以我对javascript和谷歌地图API有点陌生。目前,我可以在给定一个名为 codeAddress 的硬编码地址变量的情况下放置一个标记。
codeAddress("99362");
function codeAddress(address) {
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);
}
});
}
问题是我需要能够根据位置放置多个标记,并且需要能够解析来自 CSV 文件或 sql 数据库的地址数据。
谢谢您的帮助。