GeoJSON Map Areas
A map area gives players geographic context for a clue. It belongs to a meta and appears on the GeoGuessr round-results map whenever that meta is shown.
Supported GeoJSON
Learnable Meta accepts a GeoJSON geometry, Feature, or non-empty FeatureCollection containing:
PointMultiPointPolygonMultiPolygon
Files must be no larger than 5 MiB. Coordinates use GeoJSON order: longitude first, then latitude. Polygon rings must be closed.
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {},
"geometry": {
"type": "Point",
"coordinates": [14.4208, 50.088]
}
}
]
} Add a map area
- Save the meta once so it has an Images tab and a Map area tab.
- Edit the meta and open Map area.
- Drag and drop a
.geojsonor.jsonfile, select one from disk, or paste GeoJSON from the clipboard. - Use Preview to inspect the saved area. You can replace or remove it from the same tab.
- Choose Sync UserScript on the group’s Metas page to publish the change.
What players see
The userscript draws the point or polygon in green on the round-results map and expands the map view to include it. At a location with multiple metas, selecting another meta tab also switches to that meta’s map area.
Players can disable these overlays from their userscript manager with Learnable Meta - GeoJSON overlays: On/Off.
