styleOnlyTag method

String styleOnlyTag(
  1. String placemarkIndex
)

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

Implementation

String styleOnlyTag(String placemarkIndex) {
  String content = '';
  content += '''
    <Style id="placemark-$placemarkIndex-style">
    <IconStyle>
      <Icon>
        <href>https://github.com/Mahy02/LG-KISS-AI-App/blob/main/assets/images/placemark_pin.png?raw=true</href>
      </Icon>
    </IconStyle>
  </Style>
''';
  return content;
}