作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经加载了 Google API 16
使用 Google API 16 编译
此行的错误是“无法解析 mapView”
<nControl = mapView.getController();>
删除了gen文件夹,清理干净
已重启 Eclipse
任何帮助将不胜感激,因为我是新手并试图为非营利组织制作 map
Activity_main.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"
tools:context=".MainActivity" >
<com.google.android.maps.MapView
android:id="@+id/mapView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:apiKey="AIzaSyC1r4MzsV6jc2J-g335UlIN8WYS6D3hJks"
/>
GoogleMaps3.manifest
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="16" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="net.example.googlemaps3.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>
<user-library android:name="com.google.android.maps" />
</application>
MainActivity.java
package net.example.googlemaps3;
import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import com.google.android.maps.GeoPoint;
import com.google.android.maps.MapController;
import com.google.android.maps.MapView;
public class MainActivity extends Activity {
MapController nControl;
GeoPoint GeoP;
MapView mapV;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mapV = (MapView) findViewById(R.id.mapView);
mapV.displayZoomControls(true);
mapV.setBuiltInZoomControls(true);
double lat=44.3;
double Longi=-79.8;
GeoP= new GeoPoint((int)(lat*1E6),(int)(Longi*1E6));
nControl = mapView.getController();
nControl.animateTo(GeoP);
nControl.setZoom(12);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;
}
}
最佳答案
因为你的变量是 mapV
而不是 mapView
,你应该继续这条路并重写
nControl = mapView.getController();
作为
nControl = mapV.getController();
关于Android 谷歌地图错误 (nControl = mapView.getController();),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13924746/
leaflet:一个开源并且对移动端友好的交互式地图 JavaScript 库 中文文档: https://leafletjs.cn/reference.html 官网(英文): ht
我是一名优秀的程序员,十分优秀!