https://github.com/baseflow/flutter-geocoding
A Geocoding plugin for Flutter
https://github.com/baseflow/flutter-geocoding
flutter flutter-geocoding flutter-plugin
Last synced: 9 months ago
JSON representation
A Geocoding plugin for Flutter
- Host: GitHub
- URL: https://github.com/baseflow/flutter-geocoding
- Owner: Baseflow
- License: mit
- Created: 2020-05-28T20:44:31.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2025-06-05T12:31:43.000Z (9 months ago)
- Last Synced: 2025-06-26T11:06:34.880Z (9 months ago)
- Topics: flutter, flutter-geocoding, flutter-plugin
- Language: Dart
- Homepage: https://baseflow.com
- Size: 394 KB
- Stars: 142
- Watchers: 9
- Forks: 80
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Flutter geocoding plugin
[](https://pub.dartlang.org/packages/geocoding)
[](https://opensource.org/licenses/MIT)
[](https://github.com/tenhobi/effective_dart)
[](https://github.com/Baseflow/flutter-geocoding/actions/workflows/geocoding.yaml)
[](https://codecov.io/gh/Baseflow/flutter-geocoding)
The Flutter geocoding plugin is build following the federated plugin architecture. A detailed explanation of the federated plugin concept can be found in the [Flutter documentation](https://flutter.dev/docs/development/packages-and-plugins/developing-packages#federated-plugins). This means the geocoding plugin is separated into the following packages:
1. [`geocoding`][1]: the app facing package. This is the package users depend on to use the plugin in their project. For details on how to use the [`geocoding`][1] plugin you can refer to its [README.md][2] file. At this moment the Android and iOS platform implementations are also part of this package;
2. [`geocoding_platform_interface`][3]: this packages declares the interface which all platform packages must implement to support the app-facing package. Instructions on how to implement a platform packages can be found in the [README.md][4] of the [`geocoding_platform_interface`][3] package.
[1]: ./geocoding
[2]: ./geocoding/README.md
[3]: ./geocoding_platform_interface
[4]: ./geocoding_platform_interface/README.md