-3

我想在我的应用程序中加载地图,但无法解释谷歌开发者文档的帮助。

4

2 回答 2

1

我最近更新了 May 并按照此步骤操作,希望对您有所帮助

step [1] 更新你的sdk和检查 Google Play service

step [2]goto sdk path 喜欢 C:\android-sdk-windows\extras\google 并在您的中导入 Google Play Service Librayworkspace

step [3]添加library你的项目

step [4]在你的 xml 中放 Like

 <fragment
        android:id="@+id/mapview"
        android:name="com.google.android.gms.maps.SupportMapFragment"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_above="@+id/includefooter"
        android:layout_below="@+id/relativetop" />

step [5]在活动中

    public class YourActivi extends FragmentActivity {
....
GoogleMap mapView;

mapView = ((SupportMapFragment)  getSupportFragmentManager().findFragmentById(R.id.mapview)).getMap();
}

清单中的步骤 [6]

  <permission
        android:name="com.tixe.Activity.permission.MAPS_RECEIVE"
        android:protectionLevel="signature" />
    <uses-feature
        android:glEsVersion="0x00020000"
        android:required="true" />
    <uses-permission android:name="YourPackage.permission.MAPS_RECEIVE" />
    <meta-data
            android:name="com.google.android.maps.v2.API_KEY"
            android:value="yourKey" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>

还要检查需要权限。

于 2013-04-24T10:22:34.800 回答
1

当我在我的 android 应用程序中集成相同的功能时,这种集成让我感到恶心。从这里https://developers.google.com/maps/documentation/android/遵循正确的步骤对我有很大帮助。要记住的重要事情不要忘记从 Android SDK 管理器安装 Google Api。

于 2013-04-24T10:59:05.120 回答