I am using the Adobe Flash CS3 to compile following code

import com.google.maps.LatLng;
import com.google.maps.Map;
import com.google.maps.MapEvent;
import com.google.maps.MapType;
import com.google.maps.MapOptions;

var map:Map = new Map();
map.key =
"ABQIAAAA7Ey0S1PkOLMIi8lS7nQHAxQyxurgCDnJXGVEAAHSafApUzjf9hR1CrvS0Nkauq6Zn31tY35hgwC7WQ";

map.addEventListener(MapEvent.MAP_PREINITIALIZE, onMapPreinitialize);

function onMappreinitialize(event:MapEvent):void {
        this.map.setInitOptions(    new MapOptions({      center: new
LatLng(40.736072,-73.992062),      zoom: 14,      mapType:
MapType.NORMAL_MAP_TYPE    }));}

In above code the line
map.addEventListener(MapEvent.MAP_PREINITIALIZE, onMapPreinitialize);
gives following error



1119: Access of possibly undefined property MAP_PREINITIALIZE through
a reference with static type Class.
1120: Access of undefined property onMapPreinitialize.

How to fix this error ??/


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to