Как удалить исключение Null на тематической карте и стоит ли оно того? - PullRequest
0 голосов
/ 29 января 2020

У меня есть приложение карты, которое использует пакет google_map_flutter и отображает полноэкранную тематическую карту. Я путаюсь с тем, что при сборке приложения я получаю необработанное исключение для setMapStyle, даже если карта отображается с темой.

Необработанное исключение: NoSuchMethodError: Метод 'setMapStyle' был вызван для нуля. E / flutter (30877): получатель: ноль E / flutter (30877): пробный вызов: setMapStyle ("[\ r \ n {\ r \ n \" featureType \ ": \" landscape \ ", \ r \ n \ "elementType \": \ "geometry \", \ r \ n .......

Тема - это файл json, который я загружаю, используя код в моем initState ниже.

@override
  void initState() {
    super.initState();
    // Show the campus Map
    getSunData();
    // _showCampusMap();
    WidgetsBinding.instance.addObserver(this);
    // Check location permission has been granted

    PermissionHandler()
        .checkPermissionStatus(PermissionGroup
            .locationWhenInUse) //check permission returns a Future
        .then(_updateStatus); // handling in callback to prevent blocking UI

    rootBundle
        .loadString('assets/themes/map/day/simple_bright.json')
        .then((string) {
      mapStyle = string;
    });

    getUserLocation();
  }

Мой метод установки стиля здесь.

// method that is called on map creation and takes a MapController as a parameter
  void _onMapCreated(GoogleMapController controller) async {
    PermissionHandler()
        .checkPermissionStatus(PermissionGroup
            .locationWhenInUse) //check permission returns a Future
        .then(_updateStatus); // handling in callback to prevent blocking UI

    controller.setMapStyle(mapStyle);
  }

Вот мой код GoogleMap

_userLocation == null
                  ? Center(
                      child: Column(
                        mainAxisAlignment: MainAxisAlignment.center,
                        crossAxisAlignment: CrossAxisAlignment.center,
                        children: <Widget>[
                          CircularProgressIndicator(
                            backgroundColor: Theme.UniColour.primary[900],
                          ),
                          SizedBox(height: 20.0),
                          Text("Retrieving your location..."),
                        ],
                      ),
                    )
                  : GoogleMap(
                      onMapCreated: _onMapCreated,
                      initialCameraPosition: // required parameter that sets the starting camera position. Camera position describes which part of the world you want the map to point at.
                          CameraPosition(
                              target: _userLocation,
                              zoom: _defaultZoom,
                              tilt: _tiltAngle), //LatLng(53.467125, -2.233966)
                      scrollGesturesEnabled: _scrollGesturesEnabled,
                      tiltGesturesEnabled: _tiltGesturesEnabled,
                      compassEnabled: _compassEnabled,
                      rotateGesturesEnabled: _rotateGesturesEnabled,
                      myLocationEnabled: _myLocationEnabled,
                      buildingsEnabled: _buildingsEnabled, // not added to db
                      indoorViewEnabled: _indoorViewEnabled, // not added to db
                      mapToolbarEnabled: _mapToolbarEnabled, // not added to db
                      myLocationButtonEnabled:
                          _myLocationButtonEnabled, // not added to db
                      mapType: _currentMapType,
                      zoomGesturesEnabled: _zoomGesturesEnabled,
                      cameraTargetBounds: CameraTargetBounds(
                        new LatLngBounds(
                          northeast: uniCampusNE,
                          southwest: uniCampusSW,
                        ),
                      ),
                      minMaxZoomPreference:
                          MinMaxZoomPreference(_minZoom, _maxZoom),
                    ),

Любые идеи, почему возникает это исключение, это нужно исправить, и как мне это сделать?

[EDIT]

void _updateStatus(PermissionStatus status) {
    if (status != _status) {
      // check status has changed
      setState(() {
        _status = status; // update
        _onMapCreated(controller);
      });
    } else {
      if (status != PermissionStatus.granted) {
        //print("REQUESTING PERMISSION");
        PermissionHandler().requestPermissions(
            [PermissionGroup.locationWhenInUse]).then(_onStatusRequested);
      }
    }
  }

Тип аргумента 'Completer' не может быть назначен параметру типа 'GoogleMapController'.

[/ EDIT]

спасибо

1 Ответ

0 голосов
/ 29 января 2020

Вам необходимо инициализировать класс Completer, в вашем классе State напишите следующее:

 Completer<GoogleMapController> _controller = Completer();

Затем используйте переменную _controller при вызове setMapStyle:

  void _onMapCreated(GoogleMapController controller) async {
    PermissionHandler()
        .checkPermissionStatus(PermissionGroup
            .locationWhenInUse) //check permission returns a Future
        .then(_updateStatus); // handling in callback to prevent blocking UI

   _controller.setMapStyle(mapStyle);
  }
...