public virtual ReadOnlyObservableCollection<Layer> Layers {get;}
Public Overridable ReadOnly Property Layers As ReadOnlyObservableCollection(Of Layer)
public virtual ReadOnlyObservableCollection<Layer> Layers {get;}
Public Overridable ReadOnly Property Layers As ReadOnlyObservableCollection(Of Layer)
var map = MapView.Active.Map; if (map == null) return; //Get the group layers IReadOnlyList<GroupLayer> groupLayers = map.Layers.OfType<GroupLayer>().ToList(); foreach (var group in groupLayers) { if (group.Layers.Count == 0) //No layers in the group { //remove the group await QueuedTask.Run(() => map.RemoveLayer(group)); } }
public void QueryBuildingSceneLayer() { var bldgLayer = MapView.Active.Map.GetLayersAsFlattenedList().OfType<BuildingSceneLayer>().First(); var disciplines = new Dictionary<string, BuildingDisciplineSceneLayer>(); //A Building layer has two children - Overview and FullModel //Overview is a FeatureSceneLayer //Full Model is a BuildingDisciplineSceneLayer that contains the disciplines var fullModel = bldgLayer.FindLayers("Full Model").First() as BuildingDisciplineSceneLayer; CollectDisciplineLayers(fullModel, disciplines); } internal void CollectDisciplineLayers(BuildingDisciplineSceneLayer disciplineLayer, Dictionary<string, BuildingDisciplineSceneLayer> disciplines) { //collect information on the disciplines var name = disciplineLayer.Name; //At 2.x - var layerType = // ((ISceneLayerInfo)disciplineLayer).SceneServiceLayerType.ToString(); var discipline = disciplineLayer.GetDiscipline(); //etc //TODO - use collected information disciplines.Add(discipline, disciplineLayer); //Discipline layers are composite layers too foreach (var childDiscipline in disciplineLayer.Layers .OfType<BuildingDisciplineSceneLayer>()) { //Discipline layers can also contain FeatureSceneLayers that render the //individual full model contents var content_names = string.Join(", ", childDiscipline.Layers .OfType<FeatureSceneLayer>().Select(fl => fl.Name)); CollectDisciplineLayers(childDiscipline, disciplines); } }
Target Platforms: Windows 11, Windows 10