flutter_geocoder 0.2.2-nullsafety copy "flutter_geocoder: ^0.2.2-nullsafety" to clipboard
flutter_geocoder: ^0.2.2-nullsafety copied to clipboard

discontinued
PlatformAndroid

Forward and reverse geocoding.

flutter_geocoder #

Forward and reverse geocoding.

Usage #

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

Example:

import 'package:flutter_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}");
copied to clipboard

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.

52
likes
125
points
466
downloads

Publisher

unverified uploader

Weekly Downloads

2024.09.19 - 2025.04.03

Forward and reverse geocoding.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter, meta

More

Packages that depend on flutter_geocoder