通过地理编码器搜索邮政编码后,我想在google地图中显示该邮政编码区域周围的边界。我在maps.google.com中搜索02201作为示例,它显示了整个zip区域的边界,表示该zip范围下的所有区域。这是我的代码搜索使用地理编码器的邮政编码,我想在该zip区域周围添加边界。我想实现。请提供任何解决方案。请参阅此链接以获取图片http://i46.tinypic.com/beyerq.jpg
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);
map.fitBounds(results[0].geometry.viewport);
var marker = new google.maps.Marker({
map: map,
position: results[0].geometry.location
});
} else {
alert("Geocode was not successful for the following reason: " + status);
}
});
}