如何将样式添加到Google地球气球

时间:2013-10-02 22:37:42

标签: google-earth google-earth-plugin

有人可以告诉我如何将CSS类/样式添加到使用createFeatureBalloon()方法创建的Google地球气球?

我已经通过将.setAttribute("class", "myStyle");添加到气球对象来尝试此代码,但似乎它在这里无效。请您告诉我有没有办法在Google地球中执行此操作?

function showBalloon() {
    var balloon = ge.createFeatureBalloon('div');
    balloon.setFeature(placemark);
    balloon.setAttribute("class", "myStyle");
    balloon.setMaxWidth(600);
    ge.setBalloon(balloon); 
}

1 个答案:

答案 0 :(得分:0)

您应该创建一个气球:

var balloon = ge.createHtmlStringBalloon('');

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

balloon.setContentString(html);

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