我按照以下方式创建并指定样式(例如C#):
// ge — IGEPlugin instance
var placemark1 = ge.createPlacemark("placemark1");
var style1 = ge.createStyle("style1");
style1.getLineStyle().setWidth(2);
placemark1.setStyleSelector(style1);
// ... add placemark to ge features...
如何检查 GE 中是否已存在ID为style1
的元素?如果我拨打ge.createPlacemark("placemark1")
,我第二次这样做会收到COM
错误。
我无法使用ge.getElementById("style1")
获取元素 - 它始终返回null。
答案 0 :(得分:0)
有几件事情,首先有一个访问器getComputedStyle
,它允许你将对象样式属性作为KMLStyle对象。
dynamic placemarkStyle = placemark1.getComputedStyle();
string id = placemarkStyle.getId();
也许您可以根据需要使用此方法来引用样式对象...
您还可以通过将类型名称作为字符串传递给getElementsByType
来获取特定类型的所有元素的数组。这样的东西应该有用(虽然它没有经过测试......)
public bool DoesStyleExist(string id)
{
var styles = ge.getElementsByType('style');
int l = styles.getLength();
if(l == 0)
{
// no styles
return false;
}
for (var i = 0; i < l; ++i) {
var style = style.item(i);
var styleid = style.getId();
if(id == styleid)
{
// matching style id
return true;
}
}
// no match
return false;
}
修改强>
根据您的评论,您的代码中必须出现错误 - 我已经测试了以下内容并且按预期工作。
// create the placemark
placemark = ge.createPlacemark('pm1');
var point = ge.createPoint('');
point.setLatitude(37);
point.setLongitude(-122);
placemark.setGeometry(point);
// add the placemark to the earth DOM
ge.getFeatures().appendChild(placemark);
var styleMap = ge.createStyleMap('');
// Create normal style for style map
var normalStyle = ge.createStyle('style1');
var normalIcon = ge.createIcon('icon1');
normalIcon.setHref('http://maps.google.com/mapfiles/kml/shapes/triangle.png');
normalStyle.getIconStyle().setIcon(normalIcon);
// Create highlight style for style map
var highlightStyle = ge.createStyle('style2');
var highlightIcon = ge.createIcon('icon2');
highlightIcon.setHref('http://maps.google.com/mapfiles/kml/shapes/square.png');
highlightStyle.getIconStyle().setIcon(highlightIcon);
styleMap.setNormalStyle(normalStyle);
styleMap.setHighlightStyle(highlightStyle);
// Apply stylemap to a placemark
placemark.setStyleSelector(styleMap);
alert(ge.getElementById('pm1')); // object
alert(ge.getElementById('style1')); // object
alert(ge.getElementById('style2')); // object
DoesStyleExist('style1'); // true
DoesStyleExist('style2'); // true
DoesStyleExist('foo'); // false