Open mantifly opened 4 months ago
android
0.20.0
map init config parameter "dragEnabled" set false not work
just config dragEnabled: false
when dragEnabled set false, the map should not be draggable
when dragEnabled set false, the map still can drag
//example demo full_map.dart, add last line code "dragEnabled: false" MapLibreMap( onMapCreated: _onMapCreated, initialCameraPosition: const CameraPosition(target: LatLng(0.0, 0.0)), onStyleLoadedCallback: _onStyleLoadedCallback, dragEnabled: false, )
Platforms
android
Version of flutter maplibre_gl
0.20.0
Bug Description
map init config parameter "dragEnabled" set false not work
Steps to Reproduce
just config dragEnabled: false
Expected Results
when dragEnabled set false, the map should not be draggable
Actual Results
when dragEnabled set false, the map still can drag
Code Sample
//example demo full_map.dart, add last line code "dragEnabled: false" MapLibreMap( onMapCreated: _onMapCreated, initialCameraPosition: const CameraPosition(target: LatLng(0.0, 0.0)), onStyleLoadedCallback: _onStyleLoadedCallback, dragEnabled: false, )