Reputation: 2104
I simply cannot find a usage limit for this particular feature on google maps. I know for sure they have a complete documentation on usage limits like number of requests/map loads per day. But regarding drawing tools, I especially like polygons. How many points can you plot, how polygons can you draw?
Or at least in your common experiences, how many polygons drawn on a single map instance does it take till the application crashes or the map fails to load?
Upvotes: 3
Views: 9848
Reputation: 81
I am writing an app that displays plots of land as separate polygons on a map. Most polygons have 4 vertices, but some are much more complex. The app displays the html through a webbrowser component. I've found the limit to be about 3500 polygons.
Upvotes: 0
Reputation: 3040
Google does not impose any usage restrictions on any of the overlays including polygons, markers, etc. I have used over hundred polygons on my map without any issue from Google. However depending on how many points are present in the polygon the application may crash. I had that issue when I was plotting a polygon with over 4000 points. A workaround is plotting the polygons when they are required.
Upvotes: 3