Are you setting the "sensor" property on the map to false, I believe this is 
mandatory now.  Also are you using SSL?  I believe the only requirements at 
a bare minimum are set the "key" or "client" (if using a premiere key it's 
client) property of the map object and set the sensor property (if using SSL 
also specify ssl = "true", yes the string not the boolean).

http://code.google.com/apis/maps/documentation/flash/basics.html#APIKeys

Here's the bit from my code that initializes the map (I assume either key or 
client will be passed into the class that's initializing the map (this was 
from an extension/wrapper of the map)

                    theMap = new Map();
                    if (_key && _key != '')
                        theMap.key = _key;
                    if (_client && _client != '')
                        theMap.client = _client;
                    theMap.sensor = "false";
                    theMap.ssl = "true";
                    mapArea.addChild(theMap);

Shaun

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