我在使用jquery ui map 3.0将googlemap内容加载到div时遇到问题。
$(function() {
// Also works with: var yourStartLatLng = '59.3426606750, 18.0736160278';
var yourStartLatLng = new google.maps.LatLng(37.411563,-5.955432);
$('#map_canvas').gmap({'center': yourStartLatLng});
});
当我加载网页时,我只能看到一个空白页面。
我也在头部位置包含该文字:
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script>
<script src="js/jquery.ui.map.full.min.js" type="text/javascript"></script>
谢谢。