Conversation
…s, and more New Features: - Attribute table with sort, filter, statistics, and export - Style editor for vector layers (fill, stroke, point styling) - Export dialog (map to PNG, layer to GeoJSON/CSV) - Command palette (Ctrl+Shift+P) for quick access - Go to coordinates dialog (Ctrl+G) - Settings panel with preferences - KML/KMZ and CSV file loading support - WMS/WMTS service connections - Drag-and-drop file loading onto map - Layer reordering via drag-and-drop - Layer context menu with full options - Identify tool for feature attributes - Keyboard shortcuts (I, M, Escape, etc.) - Status bar with scale and coordinate format toggle UI Improvements: - More basemap options (CartoDB styles) - Better toolbar organization - Global keyboard shortcut handling - Modal dialog system for overlays Utilities: - src/utils/parsers.ts - KML, CSV parsing - src/utils/geo.ts - Bounds, stats, formatting - src/utils/export.ts - PNG and data export Updated CLAUDE.md with progress tracking
Changed from absolute positioning to flex layout to avoid overflow-hidden clipping issues. The table now takes space from the map area rather than overlaying it.
Added ResizeObserver to MapCanvas that calls map.resize() when the container size changes. This fixes the black screen issue when closing the attribute table.
Use fixed positioning instead of flex layout to avoid overflow-hidden clipping issues. The table now positions itself at the bottom of the viewport, above the status bar.
The table now appears as a modal with a semi-transparent backdrop that covers the screen. Clicking the backdrop closes the table. This should fix the black screen issue by properly layering the UI.
The GlobeControl was causing visual issues because the current basemaps (OpenFreeMap, CartoDB) don't support MapLibre's globe projection. For 3D globe visualization, use the Cesium backend.
MapLibre supports globe projection. Note: some basemaps like CartoDB may not render properly in globe mode. OpenFreeMap styles work better with globe projection.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds the MapLibre GlobeControl to enable globe projection view.
Changes
GlobeControlto MapLibreAdapter for 3D globe projection supportNote
Some basemaps (especially CartoDB) may not render optimally in globe mode due to lighting/styling differences. OpenFreeMap styles work better with globe projection.
Test Plan