<!doctype html> <head> <script src="http://maps.google.com/maps/api/js?key={APIkey}&language=ja"></script> </head> <body> <script> var MyLatLng = new google.maps.LatLng(35.6811673, 139.7670516); var Options = { zoom: 15, //地図の縮尺値 center: MyLatLng, //地図の中心座標 mapTypeId: 'roadmap' //地図の種類 }; var map = new google.maps.Map(document.getElementById('map'), Options); </script> </body> </html>
上記コードで、google mapが表示されません。どうしてでしょうか。
回答2件
あなたの回答
tips
プレビュー