Tested tool guide
Tested browser tools
Checked August 16, 2026
What GeoJSON Viewer & Editor does, with a checked example
GeoJSON Viewer & Editor turns pasted GeoJSON into mapped points, lines, and polygons while keeping each feature connected to its properties. The interactive view helps you inspect locations, revise features, and apply styling that makes overlapping or related data easier to distinguish. The common surprise is coordinate order: RFC 7946 positions place longitude before latitude. Reversing a familiar latitude-longitude pair can move a feature to an entirely different location even when both numbers remain valid.
Worked example
A concrete input and expected output from the current implementation.
Input
{"type":"Feature","properties":{"name":"Origin"},"geometry":{"type":"Point","coordinates":[0,0]}} ->
Expected output
The map displays one Point at longitude 0 and latitude 0, where the prime meridian meets the equator. Its inspected properties show name as Origin.
A GeoJSON Point takes its position directly from the coordinates array in longitude, latitude order. The name member belongs to the feature's properties and describes the mapped point without changing its position.