我试图从我的表中提取数据并将其绘制在谷歌地图上。
我使用以下有效...
function addPostCode(zip) {
geocoder.geocode( { 'address': zip}, 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,
name: zip
});
markers.push(marker);
} else {
alert("Geocode was not successful for the following reason: " + status);
}
});
}
仅当我的邮政编码为 LA14 时,它才会将其绘制为德国的一条名为 la14 的道路,而不是英国的 barrow in furness,有人知道如何解决这个问题吗?