Customizable, performant and vendor-free vector and raster maps, flutter wrapper for maplibre-native and maplibre-gl-js (fork of flutter-mapbox-gl/maps)
Currently, communication between dart and the native side is done by using method channel int the MapLibreMethodChannel class.
This works, but it's hard to maintain, it's not type safe, and the usage of jsonEncode in the main isolate causes performances issues.
Feature Description
Currently, communication between dart and the native side is done by using method channel int the
MapLibreMethodChannel
class. This works, but it's hard to maintain, it's not type safe, and the usage ofjsonEncode
in the main isolate causes performances issues.Describe alternatives you've considered
Replacing the method channel with Pigeon.
Additional context
No response