geocoder_buddy 1.0.1 copy "geocoder_buddy: ^1.0.1" to clipboard
geocoder_buddy: ^1.0.1 copied to clipboard

Forward, Reverse geocoding and Search Address without any apikey.

Features #

  • Easy To Use
  • Fast & Secure
  • No Api Key Required
  • More Detailed Data
  • Search Locations Without Api Key

Getting Started #

Run This Command in Terminal or Install in Your Way

flutter pub get geocoder_buddy
copied to clipboard

Searching Location #

// GBSearchData Class Porvided By geocoder_buddy
List<GBSearchData> data = await GeocoderBuddy.query(query);
copied to clipboard

GBSearchData Class #

  int placeId;
  int id;
  List<String> boundingbox;
  String lat;
  String lon;
  String displayName;
  int placeRank;
  double importance;
copied to clipboard

Converting GBSearchData To GBData #

// GBData Class Porvided By geocoder_buddy
GBData data = await GeocoderBuddy.searchToGBData(GBSearchData data);
copied to clipboard

Getting Details From Latitude/Longitude #

GBLatLng position = GBLatLng(38.8951,-77.0364);
GBData data = await GeocoderBuddy.findDetails(position);
copied to clipboard

#

GBData Class #

  int placeId;
  String osmType;
  int id;
  String lat;
  String lon;
  int placeRank;
  double importance;
  String displayName;
  // Address Class Porvided By geocoder_buddy
  Address address;
  List<String> boundingbox;
copied to clipboard

Address Class #

  String road;
  String village;
  String county;
  String stateDistrict;
  String state;
  String iso31662Lvl4;
  String postcode;
  String country;
  String countryCode;
copied to clipboard

Buy Me A Coffee #

License #

See LICENSE

28
likes
130
points
247
downloads

Publisher

verified publisherflutterbuddy.in

Weekly Downloads

2024.09.25 - 2025.04.09

Forward, Reverse geocoding and Search Address without any apikey.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

dartdoc, flutter, http

More

Packages that depend on geocoder_buddy