google_geocoding_api 1.0.1+2 copy "google_geocoding_api: ^1.0.1+2" to clipboard
google_geocoding_api: ^1.0.1+2 copied to clipboard

outdated

This Package implement Google Geocoding API with default and reverse geosearch

Introduction #

This package implement Google Geocoding API with only dart dependency(without flutter).
Before working with the plugin, be sure to read Before you begin and create an API key in Google Developer Console.

USAGE #

Geocoding (latitude/longitude lookup) #

This is example code how to use Geocoding Search. Before use it please read Geocoding (latitude/longitude lookup)

import 'package:google_geocoding_api/google_geocoding_api.dart';

Future<void> main() async {
  const String googelApiKey = 'YOUR_API_KEY';
  final bool isDebugMode = true;  
  final api = GoogleGeocodingApi(googelApiKey, isLogged: isDebugMode);  
  final searchResults = await api.search(
    'Boston',
    language: 'en',
  );
}

Reverse geocoding (address lookup) #

This is example code how to use Geocoding Reverse Search. Before use it please read Reverse geocoding (address lookup)

import 'package:google_geocoding_api/google_geocoding_api.dart';

Future<void> main() async {
  const String googelApiKey = 'YOUR_API_KEY';
  final bool isDebugMode = true;  
  final api = GoogleGeocodingApi(googelApiKey, isLogged: isDebugMode);  
  final reversedSearchResults = await api.reverse(
    '42.360083,-71.05888',
    language: 'en',
  );
}

Contact and bugs #

Use Issue Tracker for any questions or bug reports.

31
likes
0
pub points
94%
popularity

Publisher

unverified uploader

This Package implement Google Geocoding API with default and reverse geosearch

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

dio

More

Packages that depend on google_geocoding_api