Fixed
Status Update
Comments
st...@google.com <st...@google.com> #2
I second the motion: please add an option to disable continuous zoom.
In my case we have just migrated from v2 to v3 and all of our icons have begun to experience a momentary increase/decrease in size during each scroll action (didn't happen in v2 becase we didn't have continuous zoom switched on).
This is now causing confusion amongst our user base, so it would be great to be able to prevent it from happening by switching off continuous zoom.
In my case we have just migrated from v2 to v3 and all of our icons have begun to experience a momentary increase/decrease in size during each scroll action (didn't happen in v2 becase we didn't have continuous zoom switched on).
This is now causing confusion amongst our user base, so it would be great to be able to prevent it from happening by switching off continuous zoom.
na...@google.com <na...@google.com> #3
Continuous zoom appears to be causing a regression bug within FireFox 4 when using custom overlays.
As a premier customer, this is a big deal. Having the ability to disable this feature would allow us to mitigate the effect as a solution is determined.
As a premier customer, this is a big deal. Having the ability to disable this feature would allow us to mitigate the effect as a solution is determined.
Description
coord.lat()//gives NaN, should give 0
coord.lng()//gives NaN, should give 0
Using it as
coord = new google.maps.LatLng(0, 0)
works fine, both coord.lat() and coord.lng() gives 0 as expected.
Bug is in function google.maps.LatLng, the conditional
if (a && (a.lat || a.lng)) is WRONG,
it should check for
if (a && (!isNaN(a.lat) || !isNaN(a.lng)))
or similar.