-
Notifications
You must be signed in to change notification settings - Fork 543
Description
hey,
i can't see the user Location indicator on IOS. On Android it works fine. I don't get any errors. Location is working, because i build a button to move camera to user location and it works fine.
Even when i start the example project, there is no user location indicator shown.
Any possible ways to figure this out whats wrong?
Versions:
Mapbox_Gl: 0.0.5
Flutter: 1.13.8
Widget MapboxWidget() { MapboxMap mapboxMap = MapboxMap( onMapCreated: onMapCreated, initialCameraPosition: _kInitialPosition, trackCameraPosition: true, compassEnabled: false, cameraTargetBounds: CameraTargetBounds.unbounded, minMaxZoomPreference: MinMaxZoomPreference(11, 20), styleString: MapboxStyles.DARK, rotateGesturesEnabled: true, scrollGesturesEnabled: true, tiltGesturesEnabled: true, zoomGesturesEnabled: true, myLocationEnabled: true, onMapClick: (point, latLng) async { hideWidget(); }, myLocationTrackingMode: MyLocationTrackingMode.Tracking, ); return Container( child: mapboxMap, ); }