--- import type { Map as Props } from '~/types'; import Headline from '~/components/ui/Headline.astro'; import WidgetWrapper from '~/components/ui/WidgetWrapper.astro'; const { title = '', subtitle = '', tagline = '', location = '', height = 400, lat = 53.1234, lon = 18.0123, id, isDark = false, classes = {}, bg = await Astro.slots.render('bg'), } = Astro.props; // Use provided coordinates or default to Bydgoszcz, Miedzyń const coordinates = { lat: lat, lon: lon, }; // Create map URL with proper coordinates const mapUrl = `https://www.openstreetmap.org/export/embed.html?bbox=${coordinates.lon - 0.01},${coordinates.lat - 0.01},${coordinates.lon + 0.01},${coordinates.lat + 0.01}&layer=mapnik&marker=${coordinates.lat},${coordinates.lon}`; --- 🗺️ Kliknij, aby włączyć mapę Click to enable map Otwórz w OpenStreetMap
Kliknij, aby włączyć mapę
Click to enable map