WKT Viewer
Visualize WKT (Well Known Text) geometries in text files. Its main purpose is to assist debugging large log files containig WKT.

Features
- Visualizes all found WKT in the current text editor.
- Highlights the "current" geometry as you navigate the text.
- Selects the corresponding text if you click on a geometry.
Extension Settings
None for now.
Known Issues
- There's a hard coded cap on the first 500 geometries found in the text. This should be a setting.
- No theme support.
Developing
To start developing and debugging this extension:
- F5 — Launches the extension and starts the dev environment automatically.
To start the development environment without launching the extension:
- Ctrl+Shift+B → Start Dev Env — Manually start the dev environment.
Debugging the extension (Backend)
Just place breakpoints and F5.
Debugging the Webview (React Frontend)
Note: VS Code cannot directly debug code running inside the webview (React frontend) using breakpoints in the editor.
To debug your React code:
- Open the webview in your extension.
- Open the Command Palette and run
Developer: Open Webview Developer Tools .
- Use Chrome DevTools to set breakpoints and debug your React code (source maps are supported).
| |