When we type into google maps a suburb, it gives the subrubs region's boundary and the area in a particular colour. I would like to do this exact thing. But I need a way of getting the suburbs boundary latitude and longitude coordinates to draw my polygons.
相关问题
- Free Silverlight mapping with Bing maps and OpenSt
- Google Maps event listeners not working properly i
- Google maps tiles doesn't load
- Popup on hovering over cluster group
- Clipping rasters in R
相关文章
- Snapshot from the map in android
- What is the “Simplest” way to add a scale to a map
- Names of the countries on the plot with rworldmap
- Associative array without toString, etc
- Plot geocode: ggmap error
- How can I generate an image in Ruby without extern
- iOS Maps draw route (line) between several points
- How to add maps in java GUI (like GMap.net for c#)
I believe that Google does not expose the information about the suburb's boundary. You could store the points in boundary yourself, and display them with a Polygon.
For the US, the Census Bureau has information about metropolitan boundaries, see http://www.census.gov/geo/www/cob/
For Canada, look here: http://geodepot.statcan.gc.ca/2006/180506051805140305/06180505162102/92-160-072305/2006001/200102120519/20010212055_4_1-eng.htm
Good luck!