ジオロケーションと方向関数を使いたいのですが、google is not defined
エラーがあります。コードは次のとおりです。
function loadScript() {
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = "https://maps.googleapis.com/maps/api/js?key=mykey&sensor=true" + "&callback=initialize";
document.body.appendChild(script);
}
loadScriptが機能していないようです。
var mapOptions = {
zoom : 13,
mapTypeId : google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementById('map_canvas'), mapOptions);
ここからエラーが飛び出します。それを理解する方法を知っている人はいますか?ジオロケーションサービスを取得するにはキーを使用する必要があるため、単純なものは使用できません
<script src="https://maps.googleapis.com/maps/api/js?sensor=true"></script>