I have the following issue:

The code below is my AS3 code (Flash CS5) for iOS. 

It runs on my MAC but not on the iPhone. I have used the URL Signer made in 
PHP on this google site. 

The details below are real.

As the code works locally, the only failure is the url for signing.

My real key and signing url generated are in the code. 

I am using my oath client id generated when joining places API. 

The key is the key that is in my console as well. 

I don't care if you abuse the data below as I will change it anyway. 

It is more important for me to find out what I have missed in the 
documentation. 

If you want the PHP URL Signer I used, just find it in the Building URL 
Signatures section.

Any real help would be great. Stick the code below in flash for testing.

var map:Map = new Map();
map.url = 
"http://maps.google.com/maps/api/staticmap?center=-37.813186,144.962981&zoom=15&size=320x200&maptype=hybrid&client=774774095371.apps.googleusercontent.com&sensor=true&signature=bTpDYA5UDEiAwERa1Obp8W7PFJ4=";;
map.sensor = "true";
map.key = "AIzaSyBSE1duHnEztiCu-y1BZTQ_etRN6PICDvQ";
map.setSize(new Point(320, 200));
map.y = 280;
map.addEventListener(MapEvent.MAP_READY, onMapReady);
addChild(map);

function onMapReady(event:Event):void
{
map.setCenter(new LatLng(-37.813186,144.962981), 15, 
MapType.HYBRID_MAP_TYPE);
var my_marker:Marker = new Marker(new LatLng(-37.813186,144.962981));
map.addOverlay(my_marker);
} 

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