> **Documentation Index:** Fetch the complete configuration index at https://yandex.com/dev/maps/ymapsml/doc/en/llms.txt

# Geometric and geographical data

The following elements are used for describing geometric properties of objects and their geographical coordinate positioning:

1. [gml:Point](https://yandex.com/dev/maps/ymapsml/doc/en/ref/reference/gml-Point.md) — Geometric point. It is used in cases when the shape and size of a geographical object are not important. The position of the point is set using geographical coordinates.
1. [gml:LineString](https://yandex.com/dev/maps/ymapsml/doc/en/ref/reference/gml-LineString.md) — Polyline (line). Defined by setting the geographical coordinates of its points.
1. [gml:LinearRing](https://yandex.com/dev/maps/ymapsml/doc/en/ref/reference/gml-LinearRing.md) — Closed polyline (line). Defined by setting the geographical coordinates of its points. It is automatically closed by connecting the first and last points.
    
    {% note info %}
    
    The GML standard assumes that the first and last points of closed polylines are the same. Automatic closing of polylines is a feature of the Yandex.Maps JavaScript API.
    
    {% endnote %}
    
1. [gml:Polygon](https://yandex.com/dev/maps/ymapsml/doc/en/ref/reference/gml-Polygon.md) — Polygon. A shape that has closed polylines for both its interior and exterior edges. It is defined by setting the geographical coordinates of the points on the polylines that make up the polygon boundaries. All polylines are automatically closed by connecting the first and last points.

{% note info %}

Coordinates of a point are specified in the sequence “longitude, latitude”.

{% endnote %}

All the elements listed can be displayed using built-in tools in the JavaScript API.

Another type of geographical data is a polygon outline. A _polygon outline_ of an object or collection is a polygon that has a geographical object (or all the objects in a collection) inside it.

To create this type of polygon, the [gml:boundedBy](https://yandex.com/dev/maps/ymapsml/doc/en/ref/reference/gml-boundedBy.md) element is used. If this element is located inside the [ymaps:GeoObject](https://yandex.com/dev/maps/ymapsml/doc/en/ref/reference/ymaps-GeoObject.md) and [ymaps:GeoObjectCollection](https://yandex.com/dev/maps/ymapsml/doc/en/ref/reference/ymaps-GeoObjectCollection.md) elements, it is purely informative and does not directly affect the display of objects on the map. If the [gml:boundedBy](https://yandex.com/dev/maps/ymapsml/doc/en/ref/reference/gml-boundedBy.md) element is located inside the [repr:View](https://yandex.com/dev/maps/ymapsml/doc/en/ref/reference/representation-View.md) element, it determines the [the map viewport](https://yandex.com/dev/maps/ymapsml/doc/en/guide/concepts/setgeodata.md#mapBounds).

