Reputation: 135
I'm using Google Maps Javascript V3 with Android.
I'd like to highlight different districts of a city in google map with different colors. So how would I be able to get the boundaries of a certain region from google map?
I want to do a sort of segmentation like zillow does, maybe more refined at closer levels:
So is there a trivial way from the API to retrieve some boundaris positions?
Upvotes: 0
Views: 1456
Reputation: 11230
These layers will be a custom layers on top of the Map rendered using JS APIs. You will have to store the lat longs of the regions and create a polygon using Custom Overlays. Please refer to the link below
http://code.google.com/apis/maps/documentation/javascript/overlays.html#Polygons
Upvotes: 1