Fixed
Status Update
Comments
ef...@gmail.com <ef...@gmail.com> #2
not sure if this is a bug or the intended behaviour
this is a way to get the new bounds
zoomChangeListener = google.maps.event.addListener(map,'zoom_changed',function (event) {
zoomChangeBoundsListener = google.maps.event.addListener(map,'bounds_changed',function (event) {
console.log(map.get_bounds());
google.maps.event.removeListener(zoomChangeBoundsListener);
});
});
this is a way to get the new bounds
zoomChangeListener = google.maps.event.addListener(map,'zoom_changed',function (event) {
zoomChangeBoundsListener = google.maps.event.addListener(map,'bounds_changed',function (event) {
console.log(map.get_bounds());
google.maps.event.removeListener(zoomChangeBoundsListener);
});
});
Description
I have a requirement for GroundOverlay to be shown at different levels of opacity. Essentially, the problem can be explained here:
Problem:
Forum Thread:
Somehow, the GroundOverlay class includes some kind of projection standardizing code I'm not privy to see, so I can't make any other judgements about it other than it is different and/or not working as advertised.
Thanks!