我正在尝试使用选项在Android上创建MapView
但不起作用,因为编译器无法识别构造函数MapView(Context, GoogleMapOptions)
。但是,这个构造函数确实存在于the API Reference。
这是有问题的代码:
private static Context context;
@Override
protected void onCreate(Bundle savedInstanceState) {
//some code...
context = getApplicationContext();
GoogleMapOptions options = new GoogleMapOptions();
options.mapType(GoogleMap.MAP_TYPE_SATELLITE)
.compassEnabled(false)
.rotateGesturesEnabled(false)
.tiltGesturesEnabled(false);
MapView mapView = new MapView(context, options);
//...
}