0

有些人有关于 Google Maps API 的文档和课程可以分享给我,因为我为我的最后一次考试准备了关于 Google Maps API 的项目。我知道我可以在 developer.android.com 上找到有关 google maps api 的指南,但我不明白

有人有文档,有关 Google Maps API 的课程可以分享给我

4

2 回答 2

0

首先在你的系统中找出你的 debug.keystore

你会在这里找到它

Windows Vista: C:\Users\<user>\.android\debug.keystore
Windows XP: C:\Documents and Settings\<user>\.android\debug.keystore
OS X and Linux: ~/.android/debug.keystore

然后

在命令行中触发此命令

$ keytool -list -alias androiddebugkey \
-keystore <path_to_debug_keystore>.keystore \
-storepass android -keypass android

您将获得 md5 密钥作为输出

你需要点击这个

https://developers.google.com/android/maps-api-signup

按照这个步骤

If you don't have a Google account, use the link on the page to set one up.
Read the Android Maps API Terms of Service carefully. If you agree to the terms, indicate so using the checkbox on the screen.
Paste the MD5 certificate fingerprint of the certificate that you are registering into the appropriate form field.
Click "Generate API Key"

将您生成的密钥添加到您的代码中

<com.google.android.maps.MapView
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
 android:enabled="true"
 android:clickable="true"
 android:apiKey="example_Maps_ApiKey_String"
 />

也添加这个

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
 package="com.example.package.name">
 ...
 <application android:name="MyApplication" >
   <uses-library android:name="com.google.android.maps" />
 ...
 </application>

而已

于 2012-11-06T11:03:07.323 回答