首页 / 浏览问题 / 移动GIS / 问题详情
Android移动端卷帘卷不了图层
121EXP 2024年03月19日

底图可以被卷,线图层卷不上,啥原因?
代码:
 

 int count=mapControl.getMap().getLayers().getCount();
                        for (int i=0;i<count;i++){
                            if (mapControl.getMap().getLayers().get(i).getName().contains(rightTop_ls.getText())){
                                mapControl.getMap().getLayers().get(i).setVisible(true);
                            }
                            if (!mapControl.getMap().getLayers().get(i).getIsSwipe()){
                                mapControl.getMap().getLayers().get(i).setIsSwipe(true);
                            }
                        }

1个回答

客户使用imobile 11.1.0版本,本地收到测试数据,待测试,测试后,同步信息
3,425EXP 2024年03月19日
经测试地图中有图层组,对图层组设置卷帘不生效,需要进入图层组对图层设置卷帘
...