Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 829 Bytes

README.md

File metadata and controls

26 lines (20 loc) · 829 Bytes

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);