我正在尝试非常基本的谷歌地图api代码。但它只是给了我一个空白的蓝页。
我的节目是这个
Java code ::
package com.project1;
import android.os.Bundle;
import com.google.android.maps.GeoPoint;
import com.google.android.maps.MapActivity;
import com.google.android.maps.MapController;
import com.google.android.maps.MapView;
public class Testmap22Activity extends MapActivity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
MapView mapview = (MapView) findViewById(R.id.mapview);
GeoPoint gp = new GeoPoint(130810,802740);
MapController mvc = mapview.getController();
mvc.setCenter(gp);
mapview.setBuiltInZoomControls(true);
}
@Override
protected boolean isRouteDisplayed() {
// TODO Auto-generated method stub
return false;
}
}
main.xml是
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.maps.MapView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mapview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:enabled="true"
android:clickable="true"
android:apiKey="Key"
/>
清单文件
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.project1"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="15" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".Testmap22Activity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<uses-library android:name="com.google.android.maps"/>
</application>
</manifest>
我得到的是一个空白的蓝页,启用了缩放功能。 需要你的帮助...
Subbu
答案 0 :(得分:1)
android:apiKey="Key"
插入您的MD5(地图密钥),而不是"Key"
。
如何获取MD5https://developers.google.com/maps/documentation/android/mapkey
答案 1 :(得分:0)
错误就在这里
android:apiKey="Key"
请参阅此链接..地图视图将逐步说明 http://developer.android.com/resources/tutorials/views/hello-mapview.html
答案 2 :(得分:0)
正如您所说,您已输入正确的地图密钥,并且构建目标已设置为Google Api。然后这个蓝屏只有一种可能性(错误的纬度和经度参数):
GeoPoint gp = new GeoPoint(130810,802740);
您在GeoPoint构造函数中提供了错误的参数,这就是您的屏幕显示为蓝色的原因。在GeoPoint构造函数中传递正确的纬度和经度。