有人可以告诉我如何将 CSS 类/样式添加到从createFeatureBalloon()
方法创建的 Google Earth Ballon 中吗?
我已经通过添加到气球对象来尝试此代码, .setAttribute("class", "myStyle");
但它似乎在这里不起作用。请告诉我在 Google 地球中有什么方法可以做到这一点吗?
function showBalloon() {
var balloon = ge.createFeatureBalloon('div');
balloon.setFeature(placemark);
balloon.setAttribute("class", "myStyle");
balloon.setMaxWidth(600);
ge.setBalloon(balloon);
}