The Places SDK for Flutter

đź‘‹ Introduction

⚡ Features

Help your customers explore where they are and what’s around them:

  • Place Autocomplete automatically fills in the name and/or address of a place as users type.
  • Current Place returns a list of places where the user’s device is last known to be located along with an indication of the relative likelihood for each place.
  • Place Details return and display more detailed information about a place.
  • Place Photos returns high-quality images of a place.

🚀 Installation

Include the latest gplaces in your pubspec.yaml

dependencies:
...
gplaces: ^0.0.1
...

🔑 Generate App key

  1. Go to the Google Maps Platform > Credentials page.
  2. On the Credentials page, click Create credentials > API key. The API key created dialog displays your newly created API key.
  3. Click Close.The new API key is listed on the Credentials page under API keys.(Remember to restrict the API key before using it in production.)
  • For Android add it to AndroidManifest.xml:
<application>  
...
<activity>
.. </activity>
<meta-data android:name="com.google.android.geo.API_KEY" android:value="PASTE_YOUR_API_KEY_HERE"/>
...
</application>
  • For iOS add it to Info.plist:
<key>GooglePlaceKey</key>
<string>PASTE_YOUR_API_KEY_HERE</string>

đź“‘ Documentation & Example

--

--

Product Engineer @ FactoryPlus

Get the Medium app

A button that says 'Download on the App Store', and if clicked it will lead you to the iOS App store
A button that says 'Get it on, Google Play', and if clicked it will lead you to the Google Play store