OS Geocoder is Package for Showing Full Addres From Your Lattitude and Longitude

Features

  • Show Full Address Without API
  • Clear Information

Getting started

Usage

OctaGeoCoderEntity? result = await OctaGeocoder().getAddress(lattitude: 221.34423, longitude: -23.44231);
return result?.displayName ?? "Not Found";

Additional information

##OctaGeoCoderEntity

  int placeId;
  String licence;
  String osmType;
  int osmId;
  String lat;
  String lon;
  int placeRank;
  String category;
  String type;
  double importance;
  String addresstype;
  String name;
  String displayName;
  Address address;
  List<String> boundingbox;

##Adress

  String road;
  String village;
  String state;
  String iso31662Lvl4;
  String postcode;
  String country;
  String countryCode;