geocoder_location 0.1.1 copy "geocoder_location: ^0.1.1" to clipboard
geocoder_location: ^0.1.1 copied to clipboard

Forward and reverse geocoding.

geocoder_location #

Forward and reverse geocoding.

Usage #

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

Example:

import 'package:geocoder_location/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.

0
likes
110
pub points
68%
popularity

Publisher

unverified uploader

Forward and reverse geocoding.

Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (license)

Dependencies

flutter, flutter_lints, meta, pedantic

More

Packages that depend on geocoder_location