我正在使用引导标签功能,其中一个标签有照片库滑块,另一个标签有地图。默认情况下我打开页面,地图没有加载但是当我用f12打开控制台窗口时,地图显示正确。
答案 0 :(得分:0)
如果您的意思是谷歌地图,请按以下方式加载谷歌地图:
1-在头部包含此脚本标记:
<script type="text/javascript" src='http://maps.google.com/maps/api/js?sensor=false'></script>
2-也包括此代码,请务必更改&#39; WebsiteTitle&#39;你的:
<script type='text/javascript'>function initialize(cord1, cord2) { var myLatlng = new google.maps.LatLng(cord1, cord2); var myOptions = { zoom: 16, center: myLatlng, mapTypeId: google.maps.MapTypeId.ROADMAP }; var map = new google.maps.Map(document.getElementById('Map_Panel_Id'), myOptions); var marker = new google.maps.Marker({ position: myLatlng, map: map, title: 'WebsiteTitle' }); }</script>
3-使用&#39; Map_Panel_Id&#39;插入div标签就像你想要显示地图的那样。将坐标更改为您的坐标:
<div id="Map_Panel_Id"><script type='text/javascript'>initialize(@mapLatitude, @mapLongitude);</script></div>
如果这不能解决您的问题,请为您提供网页链接。