google_geocoding_plus 1.0.0 copy "google_geocoding_plus: ^1.0.0" to clipboard
google_geocoding_plus: ^1.0.0 copied to clipboard

A new Flutter package for handle google geocoding api that geocoding and reverse geocoding requests are available, forked from https://github.com/bazrafkan

google_geocoding_plus #

This package is forked from https://github.com/bazrafkan, appreciate your contribution.

A Flutter plugin that provides a Google Geocoding API.

Preview #

The Geocoding API is a service that provides geocoding and reverse geocoding of addresses.

The following requests are available:

  1. Geocoding is the process of converting addresses (like a street address) into geographic coordinates (like latitude and longitude), which you can use to place markers on a map, or position the map.
  2. Reverse geocoding is the process of converting geographic coordinates into a human-readable address.

You can also use the Geocoding API to find the address for a given place ID.

Usage #

To use this plugin, add google_geocoding_plus as a dependency in your pubspec.yaml file.

Getting Started #

Example #

Sample Usage #

  • Geocoding
var googleGeocoding = GoogleGeocoding("Your-Key");
var risult = await googleGeocoding.geocoding.get("1600 Amphitheatre",null);
  • Reverse geocoding
var googleGeocoding = GoogleGeocoding("Your-Key");
var risult = await googleGeocoding.geocoding.getReverse(LatLon(40.714224,-73.961452));
1
likes
120
pub points
73%
popularity

Publisher

unverified uploader

A new Flutter package for handle google geocoding api that geocoding and reverse geocoding requests are available, forked from https://github.com/bazrafkan

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, http

More

Packages that depend on google_geocoding_plus