---
keywords: gml:metaDataProperty
---
> **Documentation Index:** Fetch the complete configuration index at https://yandex.ru/dev/maps/ymapsml/doc/ru/llms.txt


# gml:metaDataProperty

### Диаграмма

![](../_images/metaDataProperty.png)

### Описание {#desc}

Дополнительные мета-данные геобъекта.

### Содержится в:

[gml:LinearRing](https://yandex.ru/dev/maps/ymapsml/doc/ru/ref/reference/gml-LinearRing.md), [gml:LineString](https://yandex.ru/dev/maps/ymapsml/doc/ru/ref/reference/gml-LineString.md), [gml:Point](https://yandex.ru/dev/maps/ymapsml/doc/ru/ref/reference/gml-Point.md), [gml:Polygon](https://yandex.ru/dev/maps/ymapsml/doc/ru/ref/reference/gml-Polygon.md), [ymaps:GeoObject](https://yandex.ru/dev/maps/ymapsml/doc/ru/ref/reference/ymaps-GeoObject.md), [ymaps:GeoObjectCollection](https://yandex.ru/dev/maps/ymapsml/doc/ru/ref/reference/ymaps-GeoObjectCollection.md)

### Может содержать элементы с помощью подстановок:

[ymaps:AnyMetaData](https://yandex.ru/dev/maps/ymapsml/doc/ru/ref/reference/ymaps-AnyMetaData.md)

> ### gml:metaDataProperty
> 
> Мета-информация в виде XML-документа:
> 
> ```xml
> <gml:metaDataProperty>
>     <ymaps:AnyMetaData>
>        <test>
>            <a>1</a>
>            <b>1</b>
>        </test>
>     </ymaps:AnyMetaData>
> </gml:metaDataProperty>
> ```
> 
> Пример извлечения мета-информации при построении шаблона (обращение к свойству `metaDataProperty`).
> 
> ```xml
> <Template gml:id="customTemplate">
> <text>
> <![CDATA[
>   <div>
>    <h3>$[name]</h3>
>    <span>$[description]$[metaDataProperty.AnyMetaData.test.a]</span>
>   </div>
> ]]>
> </text>
> </Template>
> ```

