lineStyleOnlyTag method

String lineStyleOnlyTag()

Property that defines the tour lineStyleOnlyTag according to its current properties.

Implementation

String lineStyleOnlyTag() {
  String content = '';
  content += '''
 <Style id="lineID">
    <LineStyle>
      <color>ff0000ff</color>
      <width>3</width>
    </LineStyle>
  </Style>
  ''';
  return content;
}