repr:text

Diagram

Description

Contained by:

repr:Template

repr:text

YMapsML document that describes an icon placemark template:

<repr:Template gml:id="myIconTemplate">
    <repr:text>
        <![CDATA[
          <div style="font-size:15px;"><div><u>Name</u>: $[name]</div>
          <div><u>Description</u>: $[description]</div> </div>
          <div> <img src="http://www.irk.ru/img/site/gallery/75/c07c4446-d9d8-4c19-b595-e764145517b2_jpg_160x100000_q85.jpg"></div>
        ]]>
    </repr:text>
</repr:Template>
Copied to clipboard

Using this template, you can define a style:

<repr:Style gml:id="myStyle">
   <repr:balloonContentStyle>
      <repr:template>#myIconTemplate</repr:template>
   </repr:balloonContentStyle>
   <repr:iconStyle>
      <repr:href>http://company.yandex.ru/i/ya.png</repr:href>
      <repr:size x="56" y="56"/>
   </repr:iconStyle>
</repr:Style>
Copied to clipboard

And apply it to a placemark:

<ymaps:GeoObject>
   <ymaps:style>#myStyle</ymaps:style>
   <gml:name>Baikal</gml:name>
   <gml:description>The deepest lake on the planet Earth.<br/>The largest natural freshwater reservoir.</gml:description>
   <gml:Point>
      <gml:pos>107.7 53.08</gml:pos>
   </gml:Point>
</ymaps:GeoObject>
Copied to clipboard