オプションを使用して Android でを作成しようとしていますが、コンパイラがコンストラクターMapView
を認識しないため機能しません。ただし、このコンストラクターはAPI リファレンスに従って存在します。MapView(Context, GoogleMapOptions)
これは問題のコードです:
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);
//...
}