MapView.第一个简单的MapView

Android--MapView.第一个简单的MapView

1.新建一个类,继承MapActivity类,选择Google APIs

MapView.第一个简单的MapView

2.在AndroidManifest.xml文件中添加map库和网络访问权限

MapView.第一个简单的MapView

3.main.xml文件,此处的apiKey为你自己申请的key,

如何取得apiKey,请看

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

<com.google.android.maps.MapView
        android:id="@+id/mapview"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:apiKey="0LohYR7LZtdkVKy3GnPMW_TOEC4I9zd1xAlwxAQ"
        android:clickable="true" />

</LinearLayout>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/affc4be61fdc0db694e171b2c3542f81.html