Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以使用 mapControl.ClearLayers() 清除所有图层,但我只想清除一个图层(底图的子图层,如城市)。我是新手,在此先感谢。
编辑:我正在使用 C#
我不确定您使用的是哪个 API,但我很了解 C#。添加图层时,通常会为属性附加名称。您可以通过名称或索引来选择它。
mapControl.Layers[1].Clear(); mapControl.Layers["My Layer"].Clear();