bf-vs
bf-vs
This code works with `MapBox` controller object but when `Snapshotter` is used, marker is not drawn on the map. ``` Future _addMarker() async { final bytes = await rootBundle.load(Assets.image.mapPin.keyName); final...
`IconAnchor.BOTTOM_RIGHT` is endoced as 'bottom_right' where mapbox expects 'bottom-right' (- vs _) therefore it does not work. This line should be fixed https://github.com/mapbox/mapbox-maps-flutter/blob/1daef17c48fd927db442a5d19f7aca06a1ffdc63/lib/src/style/layer/symbol_layer.dart#L278 [Enhanced enums](https://dart.dev/language/enums#declaring-enhanced-enums) should be used for this...