|
想实现这样的效果:
1)通过菜单控制world.shp国界线的绘制与隐藏
2)通过菜单控制
<external>
<annotations declutter="true">
<label text="China">
<position lat="35" long="105" />
</label>
<label text="Andorra">
<position lat="42.5" long="1.5" />
</label>
.....
</annotations>
</external>
显示的国家名称
第一个通过Map获得osgEarth::ModelLayer层,通过setVisible来打开和关闭,已成功。
第二个通过MapNode * mapNode = MapNode::findMapNode(node);
const Config &confExternal = mapNode->externalConfig();
const Config *confAnnotations = confExternal.child_ptr("annotations");
然后获得ConfigSet
ConfigSet set = confAnnotations->children();
可以看到child有相应的信息,但怎么控制国家名称层的显示与隐藏呢?
不会了,请高手帮忙。 |
|