こんにちは、山田です。 本日はウェブサイト上でGoogle Mapを取り扱う方法を勉強したので紹介いたしましす。
Google Mapの表示方法
Googleマップを表示するhtmlのサンプルコードを以下に示します。 (googleのサンプルコードそのままですが…)
<!DOCTYPE html> <html> <head> <title>Simple Map</title> <meta name="viewport" content="initial-scale=1.0"> <meta charset="utf-8"> <style> /* Always set the map height explicitly to define the size of the div * element that contains the map. */ #map { height: 100%; } /* Optional: Makes the sample page fill the window. */ html, body { height: 100%; margin: 0; padding: 0; } </style> </head> <body> <div id="map"></div> <script> var map; function initMap() { map = new google.maps.Map(document.getElementById('map'), { center: {lat: -34.397, lng: 150.644}, zoom: 8 }); } </script> <script src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap" async defer></script> </body> </html>
出典
Google Maps Platform https://developers.google.com/maps/documentation/javascript/examples/map-simple
ここで上記コード中の”YOUR_API_KEY”は自分で取得して置き換える必要があります。 これは以下のサイトから簡単に取得できました。