apple_maps_flutter
A Flutter plugin that provides an Apple Maps widget.
The plugin relies on Flutter's mechanism for embedding Android and iOS views. As that mechanism is currently in a developers preview, this plugin should also be considered a developers preview.
This plugin was based on the google_maps_flutter plugin. Instead of reinventing the wheel it also uses the Flutter implementation of the google_maps_flutter plugin. This was also done to simplify the process of combining the google_maps_flutter plugin with apple_maps_flutter to create a cross platform implementation for Android/iOS called flutter_platform_maps.
Screenshots
Example 1 | Example 2 |
---|---|
![]() |
![]() |
iOS
To use this plugin on iOS you need to opt-in for the embedded views preview by adding a boolean property to the app's Info.plist file, with the key io.flutter.embedded_views_preview
and the value YES
. You will also have to add the key Privacy - Location When In Use Usage Description
with the value of your usage description.
Android
There is no Android implementation, but there will be a package to combine apple_maps_flutter and the google_maps_flutter plugin to have the typical map implementations for Android/iOS (coming soon).
Sample Usage
TODO'S:
- [x] Add zoomLevelBounds
- [x] Add zoomBy functionality
- [x] Add getter for the visible map region
- [ ] Add ability to set LatLngBounds to map
- [ ] Add ability to add padding to the map
- [ ] Add scrollBy functionality
- [ ] Add ability to place a polyline
- [ ] Add ability to place a polygon
- [ ] Add ability to place a circle
- [ ] . . .
Suggestions and PR's to make this plugin better are always welcome.