GE API图标颜色

时间:2012-04-23 07:31:36

标签: kml google-earth-plugin

将颜色设置为蓝色时,GE API存在问题。 这似乎是同样的问题: http://code.google.com/p/earth-issues/issues/detail?id=313
图标的尖端变为蓝色而不是身体的位置。

我有以下基本代码:

var propIcon = 'http://maps.google.com/mapfiles/ms/micons/tree.png';
var icon = ge.createIcon('');
icon.setHref(propIcon);
var style = ge.createStyle('');
style.getIconStyle().setIcon(icon);
var colorMode = style.getIconStyle().getColor();
colorMode.set("fffdf802");

图标只是保持绿色。 它适用于其他一些颜色。

我怀疑tree.png(绿色)和我的蓝色混合不正常。

如何修复?我需要使用这个图标。

1 个答案:

答案 0 :(得分:0)