8000 GitHub - newtaDev/location_geocoder: Flutter package to convert latitude/longitude to address and from address to latitude/longitude
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

newtaDev/location_geocoder

Repository files navigation

location_geocoder

Flutter package to convert latitude/longitude to address and from address to latitude/longitude. provides easy geocoding and reverse-geocoding features. ( geocoder ) uses goolgle's location api

Getting Started

To Get Address from Coordinates

        const _apiKey = 'YOUR_MAP_API_KEY';
        final LocationGeocoder geocoder = LocationGeocoder(_apiKey);
        final address = await geocoder
            .findAddressesFromCoordinates(Coordinates(9.9312, 76.2673));
        print(address.first.addressLine);

To Get Coordinates from Address

        const _apiKey = 'YOUR_MAP_API_KEY';
        final LocationGeocoder geocoder = LocationGeocoder(_apiKey);
        final address = await geocoder.findAddressesFromQuery('kochi,kerala');;
        print(address.first.coordinates);

About

Flutter package to convert latitude/longitude to address and from address to latitude/longitude

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  
0