- Update flutter_map to support null safety, map rotation and latlong2 (#66)
- Add null safety (#66)
- Add map rotation support (#66)
- Use latlong2 package instead of latlong (#66)
Thanks to TheOneWithTheBraid for the contribution.
- BREAKING CHANGE: Plugin option
updateIntervalMs
of typeint
was removed. Instead the optionupdateInterval
of typeDuration
was added. Example: ReplaceupdateIntervalMs: 1000
byupdateInterval: Duration(seconds: 1)
. - Update flutter_compass to remove indirect rxdart dependency
- Switch from
location
togeolocator
package (#54)
Thanks to TheOneWithTheBraid for the contribution.
- Add
initiallyRequest
option to set if location should initially requested (#38)
Thanks to TheOneWithTheBraid for the contribution.
- BREAKING CHANGE: Integrated the marker layer into the plugin. The option
markers
is removed. AMarkerLayerOptions
outside of the plugin is not needed anymore. See update example for usage.
- Update dependencies
- Update dependencies
- Fix location marker is centered correctly (#29 by @sjmallon)
- Update dependencies
- Update dependencies
- Show larger circle for inaccurate location.
- Show heading for accurate location only.
- Add possiblity to change marker icon depending on the location accuracy.
- BREAKING CHANGE: All options return the type
LatLngData
instead ofLatLng
.
- Update flutter_compass to allow usage of geomagnetic rotation sensor as fallback on Android.
- First public development release.