1

我有这个代码

address = "11533"
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
                    });

                    var str = results[0].formatted_address + "";
                    var info = new google.maps.InfoWindow({
                        content : str
                    });
                    google.maps.event.addListener(marker, "click", function()
                    {
                        info.open(map, marker);
                    });
                }
                else
                    alert("Error in address");

我想添加有关城市人口及其区号的信息。有什么帮助吗?

谢谢

4

1 回答 1

3

该信息(人口和区号)不作为 Google Maps API v3 的一部分提供。您将需要为此找到一个数据源(它可能在 FusionTables 中公开可用)。在美国,人口可从人口普查中公开获得。不知道从哪里得到区号。

于 2012-07-13T05:48:43.473 回答