Fixed
Status Update
Comments
d....@gtempaccount.com <d....@gtempaccount.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
single draggable marker with the default icon. When I recreated it in V3 the
markers with custom icons always appear on top of the default marker, no
matter if they're more north of the default marker or not. Unfortunately I
can't give a link but here's the code of a quick and dirty test case. The
code is in the attached file, test.htm
Thank you.