如何在GWT-OpenLayers中以编程方式选择VectorFeature?

时间:2013-05-24 15:44:25

标签: java gwt-openlayers

javascript版本提供OpenLayers.Control.SelectFeature.select,但Java / GWT版本不提供。

感谢。

1 个答案:

答案 0 :(得分:1)

您可以看到如何进行选择in this example

点击“查看来源”按钮获取源代码。

要以编程方式进行选择,您可以执行以下操作:

SelectFeature programmaticallySelectFeature = new SelectFeature(layer);
programmaticallySelectFeature.select(feature);