1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-07-30 10:19:37 +02:00
AdventureLog/frontend/src/routes/map/+page.svelte

119 lines
2.8 KiB
Svelte
Raw Normal View History

2024-07-08 11:44:39 -04:00
<script>
// @ts-nocheck
2024-07-24 10:40:48 -04:00
import {
DefaultMarker,
MapEvents,
MapLibre,
Popup,
Marker,
GeoJSON,
LineLayer,
FillLayer,
SymbolLayer
} from 'svelte-maplibre';
2024-07-08 11:44:39 -04:00
export let data;
let clickedName = '';
2024-07-08 11:44:39 -04:00
let markers = data.props.markers;
2024-07-24 10:40:48 -04:00
let visitedRegions = data.props.visitedRegions;
let geoJSON = data.props.geoJSON;
2024-07-24 10:40:48 -04:00
let visitArray = [];
// turns in into an array of the visits
visitedRegions.forEach((el) => {
visitArray.push(el.region);
});
// mapped to the checkbox
2024-07-24 10:40:48 -04:00
let showGEO = true;
2024-07-08 11:44:39 -04:00
</script>
2024-07-24 11:01:59 -04:00
<label for="show-geo">Show Borders?</label>
<input type="checkbox" id="shpw-gep" name="show-geo" class="checkbox" bind:checked={showGEO} />
2024-07-24 10:40:48 -04:00
2024-07-08 11:44:39 -04:00
<MapLibre
style="https://basemaps.cartocdn.com/gl/voyager-gl-style/style.json"
class="relative aspect-[9/16] max-h-[70vh] w-full sm:aspect-video sm:max-h-full"
standardControls
>
{#each data.props.markers as { lngLat, name, type }}
{#if type == 'visited'}
<Marker
{lngLat}
on:click={() => (clickedName = name)}
class="grid h-8 w-8 place-items-center rounded-full border border-gray-200 bg-red-300 text-black shadow-2xl focus:outline-2 focus:outline-black"
>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle cx="12" cy="12" r="10" stroke="red" stroke-width="2" fill="red" />
</svg>
<Popup openOn="click" offset={[0, -10]}>
<div class="text-lg font-bold">{name}</div>
<p class="font-semibold text-md">Visited</p>
</Popup>
</Marker>
{/if}
{#if type == 'planned'}
<Marker
{lngLat}
on:click={() => (clickedName = name)}
class="grid h-8 w-8 place-items-center rounded-full border border-gray-200 bg-blue-300 text-black shadow-2xl focus:outline-2 focus:outline-black"
>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle cx="12" cy="12" r="10" stroke="blue" stroke-width="2" fill="blue" />
</svg>
<Popup openOn="click" offset={[0, -10]}>
<div class="text-lg font-bold">{name}</div>
<p class="font-semibold text-md">Planned</p>
</Popup>
</Marker>
{/if}
2024-07-08 11:44:39 -04:00
{/each}
2024-07-24 10:40:48 -04:00
{#if showGEO}
<GeoJSON id="states" data={data.props.geoJSON} promoteId="ISOCODE">
2024-07-24 10:40:48 -04:00
<LineLayer
layout={{ 'line-cap': 'round', 'line-join': 'round' }}
paint={{ 'line-color': 'grey', 'line-width': 3 }}
beforeLayerType="symbol"
/>
<FillLayer
paint={{ 'fill-color': 'rgba(37, 244, 26, 0.15)' }}
2024-07-24 11:01:59 -04:00
filter={['in', 'ISOCODE', ...visitArray]}
2024-07-24 10:40:48 -04:00
/>
2024-07-24 14:16:25 -04:00
<SymbolLayer
2024-07-24 10:40:48 -04:00
layout={{
2024-07-24 11:01:59 -04:00
'text-field': ['slice', ['get', 'ISOCODE'], 3],
2024-07-24 10:40:48 -04:00
'text-size': 12,
'text-anchor': 'center'
}}
paint={{
'text-color': 'black'
}}
2024-07-24 14:16:25 -04:00
/>
2024-07-24 10:40:48 -04:00
</GeoJSON>
{/if}
2024-07-08 11:44:39 -04:00
</MapLibre>
<style>
:global(.map) {
height: 500px;
}
</style>