在plus地图设置层级不起作用,所有元素都被覆盖,目前只有窗口和aler才能盖住地图,但是要把搜索,定位等按钮放在地图上,不能用窗口;在这里摸索一个星期了,求解答。不胜感激。
yangsj
- 发布:2015-12-26 16:28
- 更新:2018-12-14 11:49
- 阅读:3380
参考HelloH5+模板应用中plus/maps_map.html示例:
function createSubview(){
if('Android'!=plus.os.name){
return;
}
// 创建加载内容窗口
var topoffset='44px';
if(plus.navigator.isImmersedStatusbar()){// 兼容immersed状态栏模式
topoffset=(Math.round(plus.navigator.getStatusbarHeight())+44)+'px';
}
var wsub=plus.webview.create('maps_map_sub.html','sub',{top:topoffset,height:'60px',position:'absolute',scrollIndicator:'none',background:'transparent'});
ws.append(wsub);
}
目前iOS平台暂时不支持属性background:'transparent'(后续会补充支持)。
qiubcym
试试去,看上去nativeObj很有前景
2016-12-04 23:05
qiubcym
要是能在nativeObj上跑h5元素就碉堡了
2016-12-04 23:24