高德地图的js sdk能否直接在APPCAN打包出来的APP中使用
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
html,body,#map{
height: 100%;
}
</style>
<script src="http://webapi.amap.com/maps?v=1.3&key=857c961ad147d8f8335245f4c97fee9f&plugin=AMap.Geocoder,AMap.MarkerClusterer"></script>
</head>
<body>
<div id="map">
</div>
<script>
new AMap.Map("map", {
resizeEnable: true,
center: [116,39],
zoom: 13,
mapStyle: "blue_night" //
});
</script>
</body>
</html>
如上图,采用高德地图 js web端的方式初始化了地图,在appcan的调试中心和预览中都是正常的,在线打包后安装app发现无法正常打开,app闪退,想请教一下原因
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个问题 你解决了没?