如何将谷歌地图放在JQUERY Mobile上?
试图运行代码时,地图不显示,并显示此错误"Google Maps API warning: NoApiKeys "
。 这有什么可能的解决方案? 这是我添加的脚本:
<script src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>
这些是我放在js文件中的代码:
$(document).ready(function(){var myOptions = {zoom:11,center:new google.maps.LatLng(1.363083,103.909836),mapTypeId:google.maps.MapTypeId.ROADMAP}; var map = new google。 maps.Map(document.getElementById('map_canvas'),myOptions);
var myLatlng = new google.maps.LatLng(1.443107 , 103.795681);
var marker = new google.maps.Marker({
position: myLatlng,
map: map,
title: "Map "
})
});
这个错误表明你没有在你的谷歌地图API调用中包含API密钥。 您需要转到https://developers.google.com/maps/,注册API密钥并将其包含在您的通话中。 下面是使用JS api的一个非常简单的例子。
<script src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY></script>
链接地址: http://www.djcxy.com/p/81515.html