Hello there,
which event at best to listen to when I want to execute some custom
draw operations everytime the Google Map3D redraws a polyline, i.e.
the map is moved/zoomed/dragged in any kind?
At the moment I use these event listeners to achieve this, but maybe
there's a better way:
map.addEventListener(MapMoveEvent.MOVE_STEP, onMapViewChange);
map.addEventListener(MapMouseEvent.DRAG_STEP, onMapViewChange);
map.addEventListener(MapMouseEvent.DRAG_END, onMapViewChange);
map.addEventListener(MapZoomEvent.ZOOM_CHANGED, onMapViewChange);
map.addEventListener(MapZoomEvent.CONTINUOUS_ZOOM_STEP,
onMapViewChange);
With regards, Darek
--
You received this message because you are subscribed to the Google Groups
"Google Maps API For Flash" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-maps-api-for-flash?hl=en.