-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Labels
to be confirmedIssues under consideration for developmentIssues under consideration for development
Description
Replace the static "NEU" text on our world map with a simple, clickable element that opens location in various map apps (OpenStreetMap, OsmAnd, etc.).
Proposed Solution
Use CSS-only dropdown menu for the NEU marker:
<div class="map-marker">
<span>NEU</span>
<div class="map-links">
<a href="https://www.openstreetmap.org/?mlat=42.3398&mlon=-71.0892">OpenStreetMap</a>
<a href="https://osmand.net/map#11/42.3398/-71.0892">OsmAnd</a>
<a href="https://organicmaps.app/?v=1&dv=1&ll=42.3398,-71.0892&z=15">Organic Maps</a>
</div>
</div>- Simple hover/focus effect to show map options
- Maintains current minimalist design
- Works without JavaScript
- Accessible via keyboard
- Mobile-friendly
Technical Notes
- Pure HTML/CSS implementation
- Uses
:hoverand:focus-withinfor interaction - Opens in new tab with
target="_blank" - Requires minimal CSS changes
Thoughts on this approach? We can explore alternatives or expand on specific aspects if needed.
Metadata
Metadata
Assignees
Labels
to be confirmedIssues under consideration for developmentIssues under consideration for development