Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gfx/googlemapv2example
An example application for Google Maps Android API v2
https://github.com/gfx/googlemapv2example
Last synced: 26 days ago
JSON representation
An example application for Google Maps Android API v2
- Host: GitHub
- URL: https://github.com/gfx/googlemapv2example
- Owner: gfx
- Created: 2013-05-28T23:24:12.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-05-28T23:45:02.000Z (over 11 years ago)
- Last Synced: 2023-04-09T21:19:17.732Z (over 1 year ago)
- Language: Java
- Homepage: https://developers.google.com/maps/documentation/android/
- Size: 608 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Google Maps Android API v2
[GoogleのLocationClientを使ってみた](http://qiita.com/items/c6340a51600122033853)の続き。Google Play services library を使ってみたのでついでにGoogle Mapsも。
[Getting Started](https://developers.google.com/maps/documentation/android/start) 通りにやればとりあえずできるけど、時間がかかるのでメモ。
* API keyのために必要なSHA1 fingerprintは以下のコマンドで得る
```sh
# for debug certificate fingerprint
keytool -list -v -keystore ~/.android/debug.keystore -alias androiddebugkey -storepass android -keypass android# for release cerficate fingerprint
keytool -list -v -keystore $your_keystore_name -alias $your_alias_name
```* プロジェクトは Google Play services をライブラリとして参照する
* [Google apis](https://code.google.com/apis/console/) で設定をする
* "API Access" で fingerprint を登録して API key を得る
* "Services" の Google Maps Android API v2 を ON にする* Android 2.3 もサポートする場合、`MapFragment`ではなく`SupportMapFragment`を使うこと
* その他のFragment関係の箇所もサポートライブラリのものにするこれで動いた。
実際のコードは [gfx/GoogleMapV2Example](https://github.com/gfx/GoogleMapV2Example) を参照のこと。Android 2.3.4 と Android 4.2.2 で動作確認した。# SEE ALSO
* https://developers.google.com/maps/documentation/android/