|
楼主 |
发表于 2016-8-4 19:50:14
|
显示全部楼层
本帖最后由 qq883936 于 2016-8-4 19:55 编辑
写了个简单的测试例子,直接html,在安卓浏览器下无法响应覆盖物的鼠标点击事件。证明不是wex5的问题。
华为mate8测试
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<style type="text/css">
body, html {width: 100%;height: 100%;margin:0;font-family:"微软雅黑";font-family:"微软雅黑";}
#allmap{width:100%;height:500px;}
p{margin-left:5px; font-size:14px;}
</style>
<script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0&ak=o9pzum8sF8s3wqodZnt9S5OsKlLdjOil"></script>
<title>地图单击事件</title>
</head>
<body>
<div id="allmap"></div>
<p>添加点击地图监听事件,点击地图后显示当前经纬度</p>
</body>
</html>
<script type="text/javascript">
// 百度地图API功能
var map = new BMap.Map("allmap");
map.centerAndZoom(new BMap.Point(116.404, 39.915), 11);
function showInfo(e){
alert("############"+e.point.lng + ", " + e.point.lat);
}
var helpcarMarker = new BMap.Marker(new BMap.Point(116.404, 39.915));
map.addOverlay(helpcarMarker);
helpcarMarker.addEventListener("click", showInfo);
</script>
|
|