My favorites | Sign in
Project Home Downloads Wiki Issues Source
Checkout   Browse   Changes    
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2008 Google Inc.
Licensed under the Apache License, Version 2.0:
http://www.apache.org/licenses/LICENSE-2.0
-->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:maps="com.google.maps.*" layout="absolute" width="100%" height="100%" viewSourceURL="srcview/index.html">
<mx:Panel title="Google Maps API for Flash Demo" width="100%" height="100%">
<maps:Map
id="map"
sensor="false" key="your_api_key"
mapevent_mapready="onMapReady(event)"
width="100%" height="100%"/>
</mx:Panel>
<mx:Script>
<![CDATA[
import com.google.maps.MapEvent;
import com.google.maps.Map;
import com.google.maps.overlays.Marker;
import com.google.maps.MapType;
import com.google.maps.LatLng;
import com.google.maps.LatLngBounds;
import flash.utils.Timer;
import flash.events.TimerEvent;

private var myTimer:Timer;

private function onMapReady(event:Event):void {
map.setCenter(new LatLng(37.4419, -122.1419), 13, MapType.NORMAL_MAP_TYPE);

myTimer = new Timer(1000, 1);
myTimer.addEventListener("timer", timedFunction);
myTimer.start();
}

private function timedFunction(eventArgs:TimerEvent):void {
map.panTo(new LatLng(37.4569, -122.1569));
trace("Timer fired " + myTimer.currentCount + " times.");
}
]]>
</mx:Script>
</mx:Application>

Change log

r341 by t...@google.com on Sep 21, 2010   Diff
Update the code samples to not include a
valid API key
Go to: 
Project members, sign in to write a code review

Older revisions

r340 by t...@google.com on Sep 21, 2010   Diff
Add sensor parameter to code samples
r190 by pamela.fox on Oct 2, 2008   Diff
Committing changed examples for 1.7
r2 by pamela.fox on May 13, 2008   Diff
Adding first draft of examples for the
Maps API for Flash
All revisions of this file

File info

Size: 1457 bytes, 42 lines

File properties

svn:executable
*
Powered by Google Project Hosting