Command Palette

Search for a command to run...

Page Inspect

https://geojson.org/
Internal Links
0
External Links
2
Images
0
Headings
2

Page Content

Title:GeoJSON
Description:
HTML Size:3 KB
Markdown Size:1 KB
Fetched At:November 18, 2025

Page Structure

h1GeoJSON
h2The GeoJSON Specification (RFC 7946)

Markdown Content

GeoJSON

# GeoJSON

GeoJSON is a format for encoding a variety of geographic data structures.

{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [125.6, 10.1]
},
"properties": {
"name": "Dinagat Islands"
}
}

GeoJSON supports the following geometry types: `Point`, `LineString`, `Polygon`, `MultiPoint`, `MultiLineString`, and `MultiPolygon`. Geometric objects with additional properties are `Feature` objects. Sets of features are contained by `FeatureCollection` objects.

## The GeoJSON Specification (RFC 7946)

In 2015, the Internet Engineering Task Force (IETF), in conjunction with the original specification authors, formed a GeoJSON WG to standardize GeoJSON. RFC 7946 was published in August 2016 and is the new standard specification of the GeoJSON format, replacing the 2008 GeoJSON specification.