移动设备上的可滚动OL3 LayerSwitcher

时间:2015-12-14 14:51:22

标签: android css google-chrome scroll openlayers-3

我正在将网页地图从OL2x迁移到OL3。我开始使用OpenGeo网络应用程序构建器(谢谢,Boundless!)并且有一个功能性地图....除了我的Android手机和平板电脑上的Chrome和Firefox上的layerswitcher。我的地图具有大量的图层,因此图层切换器需要可滚动以供用户查看所有图层。滚动行为 在Windows桌面计算机上的Chrome和Edge上按预期工作。我在这里有一个临时版本的应用程序:http://rainpursuit.org/ol3/

这是我为LS“容器”试过的CSS

.layer-switcher {
    position: absolute;
    top: 3.5em;
    right: 0.5em;
    text-align: left;
}

对于“layer-tree-panel”

.layer-tree-panel {
    padding-right: 50px;
    border: 1px solid #cccccc;
    background-color: white;
    height: auto;
    max-height: 500px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    opacity: 1;
    z-index: 0;
    translateZ: (0);
    -webkit-translateZ: (0);
}

有关如何在没有鼠标悬停在LS div上的触控设备上进行此滚动的任何建议?

由于

1 个答案:

答案 0 :(得分:1)

我认为网络地图构建器使用ol3-layerswitcher的早期版本,请参阅this issue,这导致在触摸设备上修复滚动。 examples in the repo包含一个用于滚动。