Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 910 Bytes

README.md

File metadata and controls

25 lines (21 loc) · 910 Bytes

Sample Usage

Import the package into your code

import 'package:place_picker/place_picker.dart';

Create a method like below, A LocationResult will be returned with the name and lat/lng of the selected place. You can then handle the result in any way you want. Pass in an optional LatLng displayLocation to display that location instead. This is useful when you want the map to display the previously selected location.

void showPlacePicker() async {
    LocationResult result = await Navigator.of(context).push(MaterialPageRoute(
                    builder: (context) => MapLocationPicker(
                          "ADD-API-KEY-HERE",
                          languageCode: "en_us",
                          autoCompleteRegion: "in",
                          autoCompleteComponents: "country:in",
                          autoTheme: true,
                        )));
}