Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

[google_maps_flutter] Add steps to set up google map sdk on each platform in readme. #2507

Merged
merged 2 commits into from Feb 7, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/google_maps_flutter/CHANGELOG.md
@@ -1,3 +1,7 @@
## 0.5.22+2

* Update README: Add steps to enable Google Map SDK in the Google Developer Console.

## 0.5.22+1

* Fix for toggling traffic layer on Android not working
Expand Down
13 changes: 12 additions & 1 deletion packages/google_maps_flutter/README.md
Expand Up @@ -24,7 +24,18 @@ To use this plugin, add `google_maps_flutter` as a [dependency in your pubspec.y

## Getting Started

Get an API key at <https://cloud.google.com/maps-platform/>.
* Get an API key at <https://cloud.google.com/maps-platform/>.

* Enable Google Map SDK for each platform.
* Go to [Google Developers Console](https://console.cloud.google.com/).
* Choose the project that you want to enable Google Maps on.
* Select the navigation menu and then select "Google Maps".
* Select "APIs" under the Google Maps menu.
* To enable Google Map for Android, select "Maps SDK for Android" in the "Additional APIs" section, then select "ENABLE".
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: Google Maps

* To enable Google Map for iOS, select "Maps SDK for iOS" in the "Additional APIs" section, then select "ENABLE".
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ditto

* Make sure the APIs you enabled are under the "Enabled APIs" section.
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This has a potential to be a maintenance burden if the GDC undergoes a big update, which I doubt would happen every frequently. Should we mention that this steps might be out of date? cc @amirh


* You can also find a detailed steps to get start with Google Maps Platform [here](https://developers.google.com/maps/gmp-get-started).
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: "...find detailed steps"


### Android

Expand Down
2 changes: 1 addition & 1 deletion packages/google_maps_flutter/pubspec.yaml
@@ -1,7 +1,7 @@
name: google_maps_flutter
description: A Flutter plugin for integrating Google Maps in iOS and Android applications.
homepage: https://github.com/flutter/plugins/tree/master/packages/google_maps_flutter
version: 0.5.22+1
version: 0.5.22+2

dependencies:
flutter:
Expand Down