0

有人可以告诉我如何将 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); 
}
4

1 回答 1

0

您应该创建一个气球:

var balloon = ge.createHtmlStringBalloon('');

然后使用 html 代码创建一个变量,然后使用:

balloon.setContentString(html);

您可以查看https://developers.google.com/earth/documentation/balloons?hl=in

于 2014-01-23T13:08:53.627 回答