Google Maps API v3仅显示灰色框

时间:2013-06-13 20:44:58

标签: java android eclipse google-maps mobile

新开发者,但过去几天我一直试图解决灰色方框问题,而不是在Android设备上显示地图。我已经阅读了关于这些方块的所有内容,但是有正确的解决方案因为其他人不适合我。

我使用的api密钥来自我的java JRE 7文件夹中的keytool,使用bin文件夹中的命令: keytool -list -alias androiddebugkey -keystore“C:\ Users \ ben.android \ debug.keystore”-storepass android -keypass android -v ....我相信这是我读过的有关here以及其他地方的调试API密钥。

以下是我收到的错误http://imgur.com/IoHMHQc。我相信我已经突出了“有趣”部分,它是 java.io.IOException:服务器返回:3

这似乎意味着我的API密钥有问题,但我已经制作了多个新密钥,似乎没有解决问题! 我还没有上传应用程序,所以我不认为“签名/未签名”的导出问题,但这是因为我完全不了解它。

我尝试过多个教程,例如来自Lynda.com的教程以及各种youtube教程,但是它们都是谷歌地图v2而不是v3,所以这可能是问题所在。帮助将非常感激和救命!

这是我的主要java文件:

package com.bentseytlin.gmap2;

import com.google.android.maps.MapActivity;

import com.google.android.maps.MapView;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;

public class MainActivity extends MapActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        MapView view = (MapView) findViewById(R.id.themap);
                view.setBuiltInZoomControls(true);

    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

    @Override
    protected boolean isRouteDisplayed() {
        // TODO Auto-generated method stub
        return false;
    }

}

这是我的xml文件:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

  <com.google.android.maps.MapView

       android:layout_width="fill_parent"
       android:layout_height="fill_parent"    
       android:id="@+id/themap"
       android:clickable="true"
       android:apiKey="AIzaSyB1gqlqGQZCH1TlrDhp5BP9Pm9k4Jm_2co"
       />

</RelativeLayout>

这是我的清单文件:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.bentseytlin.gmap2"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="10"
        android:targetSdkVersion="17" />
    <uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <uses-library android:name="com.google.android.maps"/>
        <activity
            android:name="com.bentseytlin.gmap2.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

再次感谢!

2 个答案:

答案 0 :(得分:1)

确保您已按照以下链接中的所有步骤进行操作

https://developers.google.com/maps/documentation/android/start。 (api v2)

您应该参考地图项目中的Google服务库项目

下载Google Play服务。转到Windows。转到Android Sdk Manager。在额外内容下选择Google Play服务。如果没有安装,请安装包。

将google-play services_lib库项目复制到您的工作区。可以在以下路径中找到库项目。

 <android-sdk-folder>/extras/google/google_play_services/libproject/google-play-services_lib library project .

将库项目导入日食。

点击文件&gt;导入,选择Android&gt;将现有的Android代码导入Workspace,并浏览工作区导入库项目。您可以检查它是否是库项目。右键单击库项目。转到属性。点击左侧面板上的Android。您将看到Is Library已选中。

参考图书馆项目

右键单击你的android地图项目。转到属性。选择Android。单击Add borwse并添加库项目。

假设你有钥匙。

确保您已在服务标签下的google api控制台中为Android启用了Google地图。

你的min sdk是10.你应该使用支持片段。

<fragment
class="com.google.android.gms.maps.SupportMapFragment"
android:id="@+id/map"  
android:layout_width="match_parent"
android:layout_height="match_parent"/>

您的活动必须延长FragmentActivity

SupportMapFragment fm = (SupportMapFragment)  getSupportFragmentManager().findFragmentById(R.id.map);
GoogleMap mMap = fm.getMap(); 

确保您已添加支持库

同时确保导入以下内容

import android.support.v4.app.FragmentActivity;  
import com.google.android.gms.maps.SupportMapFragment;    

在清单文件中添加这些

  <permission
    android:name="com.bentseytlin.gmap2.permission.MAPS_RECEIVE"
    android:protectionLevel="signature"/>
 <uses-permission android:name="com.bentseytlin.gmap2.permission.MAPS_RECEIVE"/>  
 <uses-feature
    android:glEsVersion="0x00020000"
    android:required="true"/>  

在应用程序标记

下的清单中添加密钥
 <meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="key"/>    

答案 1 :(得分:0)

您正在尝试使用Google Maps Android API v1,该版本自2012年12月起已弃用,自2013年3月起不适用于新项目。

切换到API v2的最简单方法是1)删除与地图相关的所有代码,2)按照以下说明进行操作:https://developers.google.com/maps/documentation/android/start