location_pro 1.0.3
location_pro: ^1.0.3 copied to clipboard
A Flutter service for real-time location tracking with reverse geocoding (address lookup) using OpenStreetMap Nominatim API. Supports Android, iOS, Web, and Desktop.
Changelog #
All notable changes to this project will be documented in this file.
1.0.3 - 2025-09-09 #
Added #
- Updated README with beginner-friendly examples and detailed API reference.
- Added support for faster location fetch on initial start (
fast modewith direct LatLng input). - Improved error messages and permission handling.
Fixed #
- Formatter warnings resolved for
location_pro.dart. - Minor stability fixes for web/desktop periodic updates.
1.0.1 - 2025-09-07 #
Added #
- Added dartdoc comments to all public API elements for better documentation.
- Improved multi-language support for reverse geocoding.
- Added optional
autoStartparameter inLocationProconstructor to start tracking automatically.
Fixed #
- Fixed minor bugs in
fetchCurrentLocation()error handling. - Improved stability for web/desktop periodic updates.
1.0.0 - 2025-09-07 #
Added #
- Initial release of
location_proFlutter package. - Main class
LocationProfor fetching current location and addresses. - Supports live GPS tracking on mobile and periodic polling on web/desktop.
- Reverse geocoding with OpenStreetMap Nominatim.
- Multi-language support for addresses via
languageparameter. ValueNotifier<LatLng?> currentLocationandValueNotifier<String> placeNamefor UI updates.- Dispose method to stop timers and streams.
LatLngmodel included.- Example app demonstrating usage.
- MIT License included.