底图可以被卷,线图层卷不上,啥原因?
代码:
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);
}
}