mattermoran / map_launcher

Flutter plugin for launching maps
MIT License
265 stars 125 forks source link

Add MapType.any #115

Closed mattermoran closed 2 years ago

mattermoran commented 2 years ago

For people who do not care about what map to open, just anything xD on iOS it would open the Apple Maps as it was preinstalled and technically cannot be uninstalled (disabled yes, uninstalled no) on Android prioritize Google Maps and if not installed then any installed one (that is supported by this plugin though)

mattermoran commented 2 years ago

Actually don't see a reason to have this at all. The same thing is technically achievable using

MapLauncher.installedMaps.then((maps) => maps.first.showMarker(...));