Google map api をVue.js(Nuxt.js)のコンポーネントで利用する方法
やりたいこと 結論 参考 やりたいこと 一般的にGoogle map api をwebアプリケーションで使おうとしたとき、例えば以下のような感じで利用する。 html <!DOCTYPE html> <html> <head> <title>Simple Map</title> <style> #map { height: 100%; width: 100%; } </style> <script src="https://maps.googleapis.com/maps/api/js?key={API_KEY}&callback=initMap&libraries=places&v=week…
2021/01/10 15:21