如何添加或显示邮政编码边界谷歌地图v3

时间:2012-10-24 14:18:34

标签: google-maps google-maps-api-3

通过地理编码器搜索邮政编码后,我想在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);
      }
    });
  }

1 个答案:

答案 0 :(得分:2)

听起来您正在尝试执行this之类的操作,但查询只显示指定的邮政编码多边形。 Like this similar postthis one