| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

差分

ナビゲーションに移動 検索に移動
編集の要約なし
==Android Google Maps==
[[Android][Java][Eclipse]]
===APIキーの取得===
*http://developer.android.com/guide/publishing/app-signing.html
C:\>>keytool -list -keystore C:\Users\%USERNAME%\.android\debug.keystore -alias androiddebugkey -keypass android -storepass android
androiddebugkey, 2010/04/17, PrivateKeyEntry,
証明書のフィンガープリント (MD5): 75:8C:3C:49:95:93:E6:75:09:59:4D:0D:CD:D7:F4:F1
====地図を使用するためのXMLレイアウト例====
<&lt;com.google.android.maps.MapView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:apiKey="0XECzQxanKFclxduQGI4kGQVYajnqkCYT8Uqqww"
/>&gt;
===アプリケーション準備===
====マニフェスト====
*uses-library および uses-permission 要素の追加
<&lt;?xml version="1.0" encoding="utf-8"?>&gt; <&lt;manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="info.typea.googlemap"
android:versionCode="1"
android:versionName="1.0">&gt; <&lt;application android:icon="@drawable/icon" android:label="@string/app_name">&gt; <&lt;activity android:name=".GoogleMapAppActivity" android:label="@string/app_name">&gt; <&lt;intent-filter>&gt; <&lt;action android:name="android.intent.action.MAIN" />&gt; <&lt;category android:name="android.intent.category.LAUNCHER" />&gt; <&lt;/intent-filter>&gt; <&lt;/activity>&gt; <&lt;uses-library android:name="comcom.google.android.maps">&gt; <&lt;/uses-library>&gt; <&lt;/application>&gt;
<&lt;uses-permission android:name="android.permission.INTERNET">&gt; <&lt;/uses-permission>&gt; <&lt;/manifest> &gt;
====MapViewを定義====
<&lt;?xml version="1.0" encoding="utf-8"?>&gt; <&lt;LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>&gt; <&lt;com.google.android.maps.MapView
android:id="@+id/mapview"
android:layout_width="fill_parent"
android:clickable="true"
android:apiKey="{{取得したAPIキー}}"
/>&gt; <&lt;/LinearLayout>&gt;
====Activity クラスの変更====

案内メニュー