👌

【Flutter】AndroidのエミュレータでGoogleMapが表示されない時の解決法

2022/03/26に公開

はじめに

https://zuma-lab.com/posts/flutter-google-maps-with-location

こちらの記事を参考にしながらGoogleMapをiOSでは表示させることができたのですが、Androidでは以下のようになりマップを表示できませんでした!
なんでや!工藤!!

GoogleMapが表示されない

解決法

https://stackoverflow.com/questions/61000876/google-maps-not-displaying-for-android-using-flutter

結論、こちらに書いてあった方法で解決できました。

I actually just figured this out on my own, but for anybody with the same or a similar issue what I ended up finding is that the operating system I had downloaded with the emulator did not have the Google API's selected for it. Check out the screen shot below with the SDK that I added highlighted. Hope this helps somebody else!

簡単に訳すと

エミュレータをダウンロードした時にGoogleAPIが選択されていないものだった。

つまり以下の画像でPlayStoreにマークが付いているエミュレータを使用する必要がある。ということですね! 
エミュレータ選択画面

GoogleMapを表示できた

まとめ

PlayStoreのマークがついていないエミュレータで検証していたのでかなり沼ってしまいましたが、誰かの役にたてば幸いです!
他の原因で表示されていない可能性もあるので色々な方法を試してみてください!

Discussion