我正在使用来自服务器的点创建地图并将它们设置为标记,然后使用 Google Map API v3 使用这些点形成边界。地图在桌面浏览器中正确显示,但在模拟器中不显示;它不会显示标记或边界,并且会显示一些错误,例如Object is Not a function
,所以我很困惑问题是什么。
在我的代码中,当代码尝试放置边界时alerts
,我放了一些错误try-catch statements
这是代码:
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
<script src="lib/work-space.js"></script>
<script src="lib/hsmobile.min.js"></script>
<style>
#map-canvas
{
margin: 0;
padding: 0;
height: 100%;
}
</style>
</head>
<body>
<div data-role="page" id="ClubMapPage">
<script>
$('#ClubMapPage').on('pageshow',function(){
Mappy.getMappy();
})
</script>
<div class="content-wrap map-wrap">
<div id="map-canvas" style="height:500px; width:100%; margin:0; padding:0">
</div>
</div>
</div>
</body>
</html>