Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aloisdeniel/dart-opencage-geocoder
Dart client for the OpenCage forward/reverse geocoding API
https://github.com/aloisdeniel/dart-opencage-geocoder
dart geocoder geocoding opencage
Last synced: 3 months ago
JSON representation
Dart client for the OpenCage forward/reverse geocoding API
- Host: GitHub
- URL: https://github.com/aloisdeniel/dart-opencage-geocoder
- Owner: aloisdeniel
- License: mit
- Created: 2018-04-02T11:48:44.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-03-24T17:33:25.000Z (almost 5 years ago)
- Last Synced: 2024-05-01T13:52:08.948Z (8 months ago)
- Topics: dart, geocoder, geocoding, opencage
- Language: Dart
- Size: 17.6 KB
- Stars: 7
- Watchers: 6
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# OpenCage Data Geocoding Library for Dart
A Dart package that provides geocoding and reverse geocoding of locations using the [OpenCage Geocoder](https://opencagedata.com)
geocoder.## Usage
Import `package:opencage_geocoder/opencage_geocoder.dart`, and use the `Geocoder` to access geocoding services.
A simple usage example:
```dart
var geocoder = new Geocoder("YOUR_KEY");
var response = await geocoder.geocode("rennes");
// Or
response = await geocoder.reverseGeocode(2.3514992, 48.8566101);
```You can also add one of the named parameter (`language`, `countryCode`, `bounds`, `abbrv`, `limit`, `minConfidence`, `noAnnotations`, `noDedupe`, `noRecord`, `addRequest`) :
```dart
var response = await geocoder.geocode("rennes", limit: 2, countryCode: "fr");
```You will find links to the API docs on the [pub page](https://pub.dartlang.org/packages/opencage_geocoder).
## Contributions
Contributions are welcome! If you find a bug please [report it][tracker] and if you want a feature please report it.
If you want to contribute code please file an issue and create a branch off of the current dev branch and file a pull request.
[tracker]: https://github.com/aloisdeniel/dart-opencage-geocoder/issues
## License
MIT © [Aloïs Deniel](http://aloisdeniel.github.io)