Tested tool guide
Tested browser tools
Checked August 16, 2026
What WKT Geometry Viewer does, with a checked example
This tool reads a WKT (Well-Known Text) string - POINT, LINESTRING, POLYGON, or one of their MULTI/GEOMETRYCOLLECTION variants - and draws it as a vector overlay on an interactive slippy map, auto-zooming to fit the geometry's extent. Parsing runs as you type or paste, so a typo shows up immediately as a failed render rather than a silent blank map. The most common surprise: WKT orders coordinates as X Y, meaning longitude before latitude, the opposite of how people usually read GPS coordinates aloud - pasting lat/lon pairs plots everything mirrored or out in the ocean.
Worked example
A concrete input and expected output from the current implementation.
Input
POINT(-122.4194 37.7749)
->
Expected output
A single marker appears at 37.7749 N, 122.4194 W - San Francisco, CA - with the map centered and zoomed to that point.
WKT gives coordinates as X Y, meaning longitude then latitude, so -122.4194 is read as longitude and 37.7749 as latitude.