构造函数MapView(Context,GoogleMapOptions)未定义

时间:2013-03-13 13:50:31

标签: android google-maps

我正在尝试使用选项在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);

    //...
    }

0 个答案:

没有答案