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.
鉴于我对它了如指掌,我想使用 javascript 来显示或隐藏特定的 kml 建筑物。有办法吗?
“鉴于我对它了如指掌”让我认为你也有那个特定建筑物的 id。 如果是这样,您可以简单地使用此代码示例来隐藏它:
var myKmlPlacemark = ge.getElementById("myId"); myKmlPlacemark.setVisibility(false);
如果您没有元素的 id,我建议您更改逻辑以便拥有它。一切都会变得容易得多! 再见