0

我通过以下方式创建和分配样式(例如 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...

如何检查具有 ID 的元素是否style1已存在于GE中?如果我打电话ge.createPlacemark("placemark1"),第二次我会得到一个COM错误。

我无法获取元素ge.getElementById("style1")——它总是返回 null。

4

1 回答 1

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
于 2012-08-08T21:09:38.813 回答