无法在eclipse中渲染地图

Posted

技术标签:

【中文标题】无法在eclipse中渲染地图【英文标题】:unable to render the map in eclipse 【发布时间】:2016-03-01 07:38:45 【问题描述】:

在我的代码中,我试图获取地图上的当前位置及其纬度和经度。但是在运行代码时,我得到了当前位置的纬度和经度,但无法在 Eclipse 中渲染地图。并且出现以下错误每次都会生成。虽然我也生成了 API 密钥。

11-27 12:09:47.910: E/b(31763): Authentication failed on the server.
11-27 12:09:47.910: E/Google Maps android API(31763): Authorization failure.  Please see https://developers.google.com/maps/documentation/android/start for how to correctly set up the map.
11-27 12:09:47.930: E/Google Maps Android API(31763): In the Google Developer Console (https://console.developers.google.com)
11-27 12:09:47.930: E/Google Maps Android API(31763): Ensure that the "Google Maps Android API v2" is enabled.
11-27 12:09:47.930: E/Google Maps Android API(31763): Ensure that the following Android Key exists:
11-27 12:09:47.930: E/Google Maps Android API(31763):   API Key: AIzaSyBRkcj0dLxxhmjAC6W6TaCoxFo3vCTHQYI
11-27 12:09:47.930: E/Google Maps Android API(31763):   Android Application (<cert_fingerprint>;<package_name>): C9:40:D9:B6:BD:13:27:8A:98:38:29:FD:EA:AC:AF:48:AB:86:FA:E6;com.example.gpstracker

【问题讨论】:

您是否尝试过卸载并安装您的应用程序?有时它会起作用 是的,我试过了,但没用。 Google 控制台上的 API 密钥怎么样,再次交叉检查并确认一切正常 API 密钥也正确 ***.com/a/32503686 【参考方案1】:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.blugz.maffy2"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
    android:minSdkVersion="11"
    android:targetSdkVersion="17" />
<permission
android:name="com.maps.permission.MAPS_RECEIVE"
android:protectionLevel="signature" />
<uses-permission android:name="com.maps.mapss.permission.MAPS_RECEIVE"/> 
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission       android:name="com.example.googlemaps.permission.MAPS_RECEIVE" />
 <uses-permission    android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />

<uses-feature
android:glEsVersion="0x00020000"
android:required="true"/>

<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" />

      <meta-data
    android:name="com.google.android.maps.v2.API_KEY"
    android:value="AIzaSyBRkcj0dLxxhmjAC6W6TaCoxFo3vCTHQYI"/>

      <meta-data
        android:name="com.google.android.gms.version"
        android:value="@integer/google_play_services_version" />

    <activity
        android:name=".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>'

/ 将此添加到您的清单中,并确保您添加了 google-play-service_lib。在您的项目中作为库

【讨论】:

我所做的一切都是这样的。

以上是关于无法在eclipse中渲染地图的主要内容,如果未能解决你的问题,请参考以下文章

PyCharm滚动条上类似于Eclipse的小地图标尺

android - eclipse:使用使用 gps 获得的坐标显示谷歌地图

Java Eclipse来开发地图,用啥插件

在 Eclipse 中的 android 应用程序中导入打开的街道地图

Eclipse:队员士气高涨 想要夺下第一冠

Eclipse ADT ListView 和 GridView 渲染被禁用