我想在我的应用程序中加载地图,但无法解释谷歌开发人员文档中的帮助。
我最近更新了五月并遵循这些步骤,希望能在短期内帮助你
step [1]
更新您的sdk
并检查Google Play service
step [2]
转到类似C:android-sdk-windowsextrasgoogle
的sdk路径并在您的workspace
中导入Google Play Service Libray
step [3]
在您的项目中添加library
xml中的step [4]
像一样放置
<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"/>
同时选中"需要权限"。
当我在我的android应用程序中集成相同的东西时,这次集成让我恶心。从这里开始遵循正确的步骤https://developers.google.com/maps/documentation/android/对我帮助很大。重要的是要记住不要忘记从Android SDK Manager安装Google Api。