aloisdeniel/flutter_geocoder

Flutter plugin for forward and reverse geocoding

192

stars

31

commits

Dart

primary language

Mar 7, 2024

updated

dart
flutter
geocoding
plugin

README

Really sorry for the lack of updates. I'm currently really busy and can't really give you an ETA for the next release.

In the meantime, you can try the geocoding package which should offer almost the same functionnalities.

geocoder

Forward and reverse geocoding.

Usage

Import package:geocoder/geocoder.dart, and use the Geocoder.local to access geocoding services provided by the device system.

Example:

import 'package:geocoder/geocoder.dart';

// From a query
final query = "1600 Amphiteatre Parkway, Mountain View";
var addresses = await Geocoder.local.findAddressesFromQuery(query);
var first = addresses.first;
print("${first.featureName} : ${first.coordinates}");

// From coordinates
final coordinates = new Coordinates(1.10, 45.50);
addresses = await Geocoder.local.findAddressesFromCoordinates(coordinates);
first = addresses.first;
print("${first.featureName} : ${first.addressLine}");

You can alternatively use Geocoder.google member for requesting distant data from google services instead of native ones.

You will find links to the API docs on the pub page.

Getting Started

For help getting started with Flutter, view our online documentation.

For help on editing plugin code, view the documentation.

Contributors

aloisdeniel

21 commits

Eimji

7 commits

arlucio

1 commits

bcko

1 commits

aloisdeniel/flutter_geocoder

Flutter plugin for forward and reverse geocoding

192

stars

31

commits

Dart

primary language

Mar 7, 2024

updated

dart
flutter
geocoding
plugin

README

Really sorry for the lack of updates. I'm currently really busy and can't really give you an ETA for the next release.

In the meantime, you can try the geocoding package which should offer almost the same functionnalities.

geocoder

Forward and reverse geocoding.

Usage

Import package:geocoder/geocoder.dart, and use the Geocoder.local to access geocoding services provided by the device system.

Example:

import 'package:geocoder/geocoder.dart';

// From a query
final query = "1600 Amphiteatre Parkway, Mountain View";
var addresses = await Geocoder.local.findAddressesFromQuery(query);
var first = addresses.first;
print("${first.featureName} : ${first.coordinates}");

// From coordinates
final coordinates = new Coordinates(1.10, 45.50);
addresses = await Geocoder.local.findAddressesFromCoordinates(coordinates);
first = addresses.first;
print("${first.featureName} : ${first.addressLine}");

You can alternatively use Geocoder.google member for requesting distant data from google services instead of native ones.

You will find links to the API docs on the pub page.

Getting Started

For help getting started with Flutter, view our online documentation.

For help on editing plugin code, view the documentation.

Contributors

aloisdeniel

21 commits

Eimji

7 commits

arlucio

1 commits

bcko

1 commits

Languages

Dart

47.2%

Java

18.4%

Objective-C

11.6%

HTML

9.8%

Ruby

9.5%

Swift

3.1%