<html> <head> <script src="https://maps.googleapis.com/maps/api/js?key=YOUR_KEY&language=ja®ion=JP"></script> <script type="text/javascript"> <!-- function mapinit(){ var centerposition = new google.maps.LatLng(35.683142915306746,139.7524109389633); var option = { zoom: 13, center: centerposition, }; var map = new google.maps.Map(document.getElementById("map"),option); } //--> </script> <style type="text/css"> <!-- #map{ width: 500px; height: 360px; } //--> </style> <title>google_map</title> </head> <body onload="mapinit()"> <p>グーグルマップ</p> <div id="map"></div> </body> </html>