- Added fullscreen and measurement mode buttons for improved map interaction. - Introduced a bookmarks section to save and navigate to locations easily. - Implemented a search feature for quick access to coordinates and markers. - Added keyboard shortcuts overlay for enhanced usability. - Refactored MapControls and MapControlsContent to support new functionalities. - Introduced new icon components for better visual representation in the UI.
14 lines
533 B
Vue
14 lines
533 B
Vue
<template>
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
|
|
<rect x="2" y="4" width="20" height="16" rx="2" ry="2" />
|
|
<path d="M6 8h.001" />
|
|
<path d="M10 8h.001" />
|
|
<path d="M14 8h.001" />
|
|
<path d="M18 8h.001" />
|
|
<path d="M8 12h.001" />
|
|
<path d="M12 12h.001" />
|
|
<path d="M16 12h.001" />
|
|
<path d="M7 16h10" />
|
|
</svg>
|
|
</template>
|