Created
September 20, 2011 15:32
-
-
Save amay077/1229421 to your computer and use it in GitHub Desktop.
GoogleMap on Flex Mobile Example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<s:View xmlns:fx="http://ns.adobe.com/mxml/2009" | |
xmlns:s="library://ns.adobe.com/flex/spark" | |
xmlns:mx="library://ns.adobe.com/flex/mx" | |
title="HomeView"> | |
<fx:Declarations> | |
<!-- 非ビジュアルエレメント (サービス、値オブジェクトなど) をここに配置 --> | |
</fx:Declarations> | |
<maps:Map xmlns:maps="com.google.maps.*" id="map" | |
width="100%" height="100%" | |
url="APIキー取得時に指定したURL" | |
key="あなたが取得したキー" | |
sensor="false" /> | |
</s:View> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment