-2
Google Maps APIエラー:MissingKeyMapError、 、APIキーがあり、jsに渡しました。なぜそれは動作しません?Google Maps APIエラー:MissingKeyMapError、キーがあります
<script src="https://maps.googleapis.com/maps/api/js?Key=MY_API_KEY&callback=myMap"></script>
と
<div id="googleMap" style="width:100%;height:380px;"></div>
<script>
function myMap() {
var mapProp = {
center: new google.maps.LatLng(30.331917,57.017670),
zoom: 10,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("googleMap"), mapProp);
}
</script>
私のテストページ:http://shahrkharid.org/GoogleMap.html