0

我正在尝试在 android 活动的特定点访问谷歌地图。我的模拟器已连接到互联网。我还授予 manifest.xml 文件的 Internet 权限。但是我的程序无法连接到互联网。只显示网格线但不显示地图。我找不到任何错误。请帮帮我。这是我的代码

    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    mv=(MapView)findViewById(R.id.mapView);

    LinearLayout zoomLayout = (LinearLayout)findViewById(R.id.zoom);  
    View zoomView = mv.getZoomControls(); 

    zoomLayout.addView(zoomView, 
        new LinearLayout.LayoutParams(
            LayoutParams.WRAP_CONTENT, 
            LayoutParams.WRAP_CONTENT)); 
    mv.displayZoomControls(true);


    mc=mv.getController();
    String coordinates[] = {"1.352566007", "103.78921587"};
    double lat = Double.parseDouble(coordinates[0]);
    double lng = Double.parseDouble(coordinates[1]);

    p=new GeoPoint((int)(lat*1E6),(int)(lng*1E6));
    mc.animateTo(p);
    mc.setZoom(17); 
    mv.invalidate();

我的清单.xml

<?xml version="1.0" encoding="utf-8"?>

<application android:icon="@drawable/icon" android:label="@string/app_name">
    <uses-library android:name="com.google.android.maps"></uses-library>
    <activity android:name=".geo_loc"
              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>

4

1 回答 1

0

您很可能需要 Maps API 密钥。如果您认为您已经拥有 Maps API 密钥但仍然无法确定,请发布您的清单 .xml 文件

于 2011-04-05T17:51:22.677 回答