Hi,
I have added 3D map's capabilities to my flex application with the
following code
private function addListeners():void
{
map.addEventListener(MapEvent.MAP_READY, onMapReady);
map.addEventListener(MapEvent.MAP_PREINITIALIZE,
onMapPreInitialize);
map.addEventListener(MapMouseEvent.DOUBLE_CLICK,
onMapDoubleClicked);
map.addEventListener(MapMouseEvent.CLICK, onMapClicked);
map.addEventListener(MapMouseEvent.MOUSE_MOVE,
onMapMouseMoved);
}
private function onMapPreInitialize(event:MapEvent):void
{
var opt:MapOptions = new MapOptions();
opt.viewMode = View.VIEWMODE_PERSPECTIVE;
opt.attitude = new Attitude(20,30,0);
map.setInitOptions(opt);
}
private function onMapReady(event:MapEvent):void
{
map.setCenter(new LatLng(defaultLatitude,
defaultLongitude), 14,
MapType.HYBRID_MAP_TYPE);
map.disableContinuousZoom();
map.setDoubleClickMode(MapAction.ACTION_NOTHING);
//map.addControl(new ZoomControl());
//map.addControl(new MapTypeControl());
//map.addControl(new PositionControl());
map.addControl(new NavigationControl());
featuresManager.getAllFeatures();
addContextMenus();
}
This works fine for the 3D map, but the MapMouseEvent.DOUBLE_CLICK
does not remain consistent. i.e, the double click event is not fired
every time user double clicks the map.
Any help will be appreciated.
Regards,
- Mahmood
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---