我正在尝试MapView
使用选项在 Android 上创建一个但不起作用,因为编译器无法识别构造函数MapView(Context, GoogleMapOptions)
。但是,根据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);
//...
}