0

我正在尝试非常基本的谷歌地图 api 代码。但它只是给了我一个空白的蓝页。

我的程序是这个

Java 代码::

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>

我得到的只是一个启用缩放的空白蓝页。在这方面需要你的帮助...

副部

4

3 回答 3

1
 android:apiKey="Key"

而是插入您的 MD5(映射键)"Key"

如何获取 MD5 https://developers.google.com/maps/documentation/android/mapkey

于 2012-05-28T13:13:00.510 回答
0

错误就在这里

 android:apiKey="Key"

参考这个链接..这里地图视图是一步一步解释 http://developer.android.com/resources/tutorials/views/hello-mapview.html

于 2012-05-28T13:22:02.420 回答
0

正如您所说,您输入了正确的地图密钥,并且构建目标已设置为 Google Api。那么这个蓝屏只有一种可能性(错误的纬度和经度参数):

           GeoPoint gp = new GeoPoint(130810,802740);

您在 GeoPoint 构造函数中提供了错误的参数,这就是您的屏幕显示为蓝色的原因。在 GeoPoint 构造函数中传递正确的纬度和经度。

于 2012-09-20T10:42:04.930 回答