Is there any easy ways to find the bounding box of a polyline using Google Maps API v3? I'm working on a project where I need to update the bounds as data is added and removed from the map. This is pretty easy by just doing bd.extend(point) where bd is the bound object and point is a LatLng object. The problem is when I start removing data I would like it to change the bounds and zoom back in. Are there any built in functions that can do this or will I need to write something for myself?
|
feedback
|
|
The v2 API had the You may want to handle this by overriding the I think Google intentionally omitted such methods from the v3 API in an attempt to keep the API lightweight. A similar omission discussed a couple of days ago on Stack Overflow was the | ||||
|
feedback
|
|
You can also extend the Polyline class to add your own getBounds method. Refer to question 3529902 for how to do this. | |||
|
feedback
|