0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Google maps APIの development purposes only の表示が消えない (解決済み)

Posted at

はじめに

オリジナルアプリの中にGoogle Mapを実装したいと思い
1,Google cloud Platformにログインして
2,クレジットカード情報も登録して
3,使用するAPI(Maps JavaScript API,Geocoding API)の有効化もして
4,APIのキー取得、設定もして(APIごとのキーを取得すると書いてある記事もあったが今は1つでいいようですね)

.gitignore
/.env
.env
GOOGLE_MAPS_API_KEY = "取得したAPIキーを記載"

をそれぞれ記述して実行してもdevelopment purposes onlyの表示は消えない。
何で?と思ってたら、あっ!!!

gem 'dotenv-rails'

の記述とインストールを忘れていた!
$ bundle install もやって、ようやく表示されました。

おわりに

新しい機能を使うときは難しい。でもどんどん色んな機能を実装して経験値を増やしていきたいです!

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?