我想在我的应用中加载地图,但无法解释Google开发者文档中的帮助。
答案 0 :(得分:1)
我最近有更新May并且按照这个步骤希望简短地帮助你
step [1]
更新sdk
并检查Google Play service
step [2]
转到sdk路径赞C:\android-sdk-windows\extras\google
并在workspace
step [3]
在您的项目中添加library
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();
}
Manifest中的步骤[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"/>
还要检查要求权限。
答案 1 :(得分:1)
当我在我的Android应用程序中集成相同内容时,那次集成让我生病了。从这里开始正确的步骤https://developers.google.com/maps/documentation/android/对我有很大的帮助。要记住的重要事项不要忘记从Android SDK Manager安装Google Api。