--- import type { MapMarker, PlayerMarker } from '@/types/Leaflet'; import MarkerCreator from './overlay/MarkerCreator.vue'; interface Props { mapKey: string zoomifyKey: string mapHeight: number mapWidth: number markers?: MapMarker[] players?: PlayerMarker rulerMainUnit?: string rulerDistanceRatio?: number rulerHideWalkDistance?: boolean backgroundColor?: string } const { mapKey, zoomifyKey, mapHeight, // mapWidth, // Find these in the zoomify / original image data markers = [] as MapMarker[], players = {} as PlayerMarker, rulerMainUnit = 'Kilomètres', rulerDistanceRatio = 1, rulerHideWalkDistance = false, backgroundColor = 'transparent', } = Astro.props ---