Metatags are extra tags available, in order to display more data or to give better questions.
They are calculated automatically on every feature when the data arrives in the webbrowser. This document gives an overview of the available metatags.
Hint: when using metatags, add the query parameter debug=true
to the URL. This will include a box in the popup for features which shows all the properties of the object
- _lat, _lon
- _layer
- _surface
- _surface:ha
- _length, _length:km
- Theme-defined keys
- _country
- _isOpen
- _direction:numerical, _direction:leftright
- _direction:centerpoint
- _now:date, _now:datetime
- _last_edit:contributor, _last_edit:contributor:uid, _last_edit:changeset, _last_edit:timestamp, _version_number, _backend
- sidewalk:left, sidewalk:right, generic_key:left:property, generic_key:right:property
- _geometry:type
- _level
- _referencing_ways
- _last_edit:passed_time
- _currency
The following values are always calculated, by default, by MapComplete and are available automatically on all elements in every theme
The latitude and longitude of the point (or centerpoint in the case of a way/area)
The layer-id to which this feature belongs. Note that this might be return any applicable if passAllFeatures
is defined.
The surface area of the feature in square meters. Not set on points and ways
This is a lazy metatag and is only calculated when needed
The surface area of the feature in hectare. Not set on points and ways
This is a lazy metatag and is only calculated when needed
The total length of a feature in meters (and in kilometers, rounded to one decimal for '_length:km'). For a surface, the length of the perimeter
If 'units' is defined in the layoutConfig, then this metatagger will rewrite the specified keys to have the canonical form (e.g. 1meter
will be rewritten to 1m
; 1
will be rewritten to 1m
as well)
The country codes of the of the country/countries that the feature is located in (with latlon2country). Might contain multiple countries, separated by a ;
If 'opening_hours' is present, it will add the current state of the feature (being 'yes' or 'no')
This is a lazy metatag and is only calculated when needed
_direction:numerical is a normalized, numerical direction based on 'camera:direction' or on 'direction'; it is only present if a valid direction is found (e.g. 38.5 or NE). _direction:leftright is either 'left' or 'right', which is left-looking on the map or 'right-looking' on the map
_direction:centerpoint is the direction of the linestring (in degrees) if one were standing at the projected centerpoint.
This is a lazy metatag and is only calculated when needed
Adds the time that the data got loaded - pretty much the time of downloading from overpass. The format is YYYY-MM-DD hh:mm, aka 'sortable' aka ISO-8601-but-not-entirely
_last_edit:contributor, _last_edit:contributor:uid, _last_edit:changeset, _last_edit:timestamp, _version_number, _backend
Information about the last edit of this object. This object will actually rewrite some tags for features coming from overpass
Rewrites tags from 'generic_key:both:property' as 'generic_key:left:property' and 'generic_key:right:property' (and similar for sidewalk tagging). Note that this rewritten tags will be reuploaded on a change. To prevent to much unrelated retagging, this is only enabled if the layer has at least some lineRenderings with offset defined
Adds the geometry type as property. This is identical to the GoeJson geometry type and is one of Point
,LineString
, Polygon
and exceptionally MultiPolygon
or MultiLineString
Extract the 'level'-tag into a normalized, ';'-separated value called '_level' (which also includes 'repeat_on'). The level
tag (without underscore) will be normalized with only the value of level
.
_referencing_ways contains - for a node - which ways use this node as point in their geometry.
This is a lazy metatag and is only calculated when needed
Gives the number of seconds since the last edit. Note that this will not update, but rather be the number of seconds elapsed at the moment this tag is read first
This is a lazy metatag and is only calculated when needed
Adds the currency valid for the object, based on country or explicit tagging. Can be a single currency or a semicolon-separated list of currencies. Empty if no currency is found.
This is a lazy metatag and is only calculated when needed
In some cases, it is useful to have some tags calculated based on other properties. Some useful tags are available by default (e.g. lat
, lon
, _country
), as detailed above.
It is also possible to calculate your own tags - but this requires some javascript knowledge.
Before proceeding, some warnings:
- DO NOT DO THIS AS BEGINNER
- Only do this if all other techniques fail This should not be done to create a rendering effect, only to calculate a specific value
- THIS MIGHT BE DISABLED WITHOUT ANY NOTICE ON UNOFFICIAL THEMES As unofficial themes might be loaded from the internet, this is the equivalent of injecting arbitrary code into the client. It'll be disabled if abuse occurs.
To enable this feature, add a field calculatedTags
in the layer object, e.g.:
"calculatedTags": [
"_someKey=javascript-expression (lazy execution)",
"_some_other_key:=javascript expression (strict execution)
"name=feat.properties.name ?? feat.properties.ref ?? feat.properties.operator",
"_distanceCloserThen3Km=distanceTo(feat)( some_lon, some_lat) < 3 ? 'yes' : 'no'"
]
By using :=
as separator, the attribute will be calculated as soon as the data is loaded (strict evaluation)
The default behaviour, using =
as separator, is lazy loading
The above code will be executed for every feature in the layer. The feature is accessible as feat
and is an amended geojson object:
area
contains the surface area (in square meters) of the objectlat
andlon
contain the latitude and longitude
Some advanced functions are available as well. Due to technical reasons, they should be used as funcname(feat)(arguments)
.
Calculates the distance between the feature and a specified point in meter. The input should either be a pair of coordinates, a geojson feature or the ID of an object
- feature OR featureID OR longitude
- undefined OR latitude
Gives a list of features from the specified layer which this feature (partly) overlaps with. A point which is embedded in the feature is detected as well. If the current feature is a point, all features that this point is embeded in are given.
The returned value is { feat: GeoJSONFeature, overlap: number}[]
where overlap
is the overlapping surface are (in m²) for areas, the overlapping length (in meter) if the current feature is a line or undefined
if the current feature is a point.
The resulting list is sorted in descending order by overlap. The feature with the most overlap will thus be the first in the list.
For example to get all objects which overlap or embed from a layer, use _contained_climbing_routes_properties=overlapWith(feat)('climbing_route')
Also see enclosingFeatures which can be used to get all objects which fully contain this feature
- ...layerIds - one or more layer ids of the layer from which every feature is checked for overlap)
Gives a list of all features in the specified layers which fully contain this object. Returned features will always be (multi)polygons. (LineStrings and Points from the other layers are ignored)
The result is a list of features: {feat: Polygon}[]
This function will never return the feature itself.
- ...layerIds - one or more layer ids of the layer from which every feature is checked for overlap)
Gives the intersection points with selected features. Only works with (Multi)Polygons and LineStrings.
Returns a {feat: GeoJson, intersections: [number,number][]}
where feat
is the full, original feature. This list is in random order.
If the current feature is a point, this function will return an empty list. Points from other layers are ignored - even if the points are parts of the current linestring.
- ...layerIds - one or more layer ids of the layer from which every feature is checked for intersection)
Given either a list of geojson features or a single layer name, gives the single object which is nearest to the feature. In the case of ways/polygons, only the centerpoint is considered. Returns a single geojson feature or undefined if nothing is found (or not yet loaded)
- list of features or a layer name or '*' to get all features
Given either a list of geojson features or a single layer name, gives the n closest objects which are nearest to the feature (excluding the feature itself). In the case of ways/polygons, only the centerpoint is considered. Returns a list of {feat: geojson, distance:number}
the empty list if nothing is found (or not yet loaded)
If a 'unique tag key' is given, the tag with this key will only appear once (e.g. if 'name' is given, all features will have a different name)
- list of features or layer name or '*' to get all features
- amount of features
- unique tag key (optional)
- maxDistanceInMeters (optional)
Gets the property of the feature, parses it (as JSON) and returns it. Might return 'undefined' if not defined, null, ...
- key
This document is autogenerated from src/Logic/SimpleMetaTagger.ts, src/Logic/ExtraFunctions.ts