Removed nanostore logic
This module was way too cumbersome for such a simple implementation ; now the resources are just plain json loaded in astro instead of full on API routes. This also eliminates the need to have a backend service to serve the API and the app can be deployed statically
@@ -1,14 +1,10 @@
|
||||
import { defineConfig } from 'astro/config';
|
||||
import nodeJs from '@astrojs/node';
|
||||
|
||||
import vue from "@astrojs/vue";
|
||||
|
||||
// https://astro.build/config
|
||||
export default defineConfig({
|
||||
integrations: [vue()],
|
||||
output: 'server',
|
||||
adapter: nodeJs({
|
||||
mode: 'standalone'
|
||||
}),
|
||||
output: 'static',
|
||||
site: 'https://maps.alexcreates.fr'
|
||||
});
|
||||
|
||||
|
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 3.6 KiB |
|
Before Width: | Height: | Size: 4.9 KiB After Width: | Height: | Size: 4.9 KiB |
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.1 KiB |
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.7 KiB |
|
Before Width: | Height: | Size: 1000 B After Width: | Height: | Size: 1000 B |
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
@@ -1,10 +1,11 @@
|
||||
---
|
||||
import { allTasks } from 'nanostores';
|
||||
import { $world } from './worldStore';
|
||||
import type { MapMarker, PlayerMarker } from '@/types/Leaflet';
|
||||
|
||||
$world.listen(() => {})
|
||||
await allTasks()
|
||||
const { markers, players } = $world.get()
|
||||
import markersData from '@/components/maps/data/markers.json'
|
||||
import playersData from '@/components/maps/data/players.json'
|
||||
|
||||
const markers = markersData.data as MapMarker[]
|
||||
const players = playersData as PlayerMarker
|
||||
---
|
||||
|
||||
<div class="world-wrapper">
|
||||
@@ -57,8 +58,8 @@ for (let i = 0; i < markers.length; i++) {
|
||||
switch (m.group) {
|
||||
case "capitals":
|
||||
markerIcon = L.icon({
|
||||
iconUrl: `icons/castle.png`,
|
||||
shadowUrl: `icons/castle-shadow.png`,
|
||||
iconUrl: `icon/castle.png`,
|
||||
shadowUrl: `icon/castle-shadow.png`,
|
||||
iconSize: [25, 25],
|
||||
shadowSize: [35, 30],
|
||||
iconAnchor: [12.5, 8],
|
||||
@@ -68,15 +69,15 @@ for (let i = 0; i < markers.length; i++) {
|
||||
|
||||
case "cities":
|
||||
markerIcon = L.icon({
|
||||
iconUrl: `icons/circle.png`,
|
||||
iconUrl: `icon/circle.png`,
|
||||
iconSize: [12, 12],
|
||||
});
|
||||
break;
|
||||
|
||||
case "landmarks":
|
||||
markerIcon = L.icon({
|
||||
iconUrl: `icons/monument.png`,
|
||||
shadowUrl: `icons/monument-shadow.png`,
|
||||
iconUrl: `icon/monument.png`,
|
||||
shadowUrl: `icon/monument-shadow.png`,
|
||||
iconSize: [18, 18],
|
||||
shadowSize: [32, 14],
|
||||
iconAnchor: [12.5, 8],
|
||||
@@ -135,8 +136,8 @@ if ( players ) {
|
||||
const playersPosition = [players.markerCoords.y, players.markerCoords.x];
|
||||
|
||||
const playerIcon = L.icon({
|
||||
iconUrl: `icons/location-pin.png`,
|
||||
shadowUrl: `icons/location-pin-shadow.png`,
|
||||
iconUrl: `icon/location-pin.png`,
|
||||
shadowUrl: `icon/location-pin-shadow.png`,
|
||||
iconSize: [18, 24],
|
||||
shadowSize: [20, 16],
|
||||
iconAnchor: [11, 8],
|
||||
|
||||
@@ -1,9 +1,17 @@
|
||||
---
|
||||
import type { MapMarker, PlayerMarker } from "@/types/Leaflet";
|
||||
|
||||
import SearchMarkers from "./overlay/SearchMarkers.vue";
|
||||
|
||||
import markersData from '@/components/maps/data/markers.json'
|
||||
import playersData from '@/components/maps/data/players.json'
|
||||
|
||||
const markers = markersData.data as MapMarker[]
|
||||
const players = playersData as PlayerMarker
|
||||
---
|
||||
|
||||
<div class="world-overlay">
|
||||
<SearchMarkers client:load />
|
||||
<SearchMarkers client:load markers={markers} players={players}/>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
|
||||
603
src/components/maps/data/markers.json
Normal file
@@ -0,0 +1,603 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"group": "capitals",
|
||||
"title": "Ambrose",
|
||||
"description": "Chef-lieu de Nacride et Capitale économique de l'Alliance Kaldélienne.",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Ambrose",
|
||||
"markerCoords": {
|
||||
"x": 83.6,
|
||||
"y": -185.2
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "capitals",
|
||||
"title": "Cordouac",
|
||||
"description": "Chef-lieu d'Héraldie et Capitale administrative de l'Alliance Kaldélienne.",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Cordouac",
|
||||
"markerCoords": {
|
||||
"x": 133.46875,
|
||||
"y": -146.0625
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "capitals",
|
||||
"title": "Bordelac",
|
||||
"description": "Chef-lieu des Hautes-Berges",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Bordelac",
|
||||
"markerCoords": {
|
||||
"x": 151.22656,
|
||||
"y": -173.63281
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "capitals",
|
||||
"title": "Tourgrise",
|
||||
"description": "Chef-lieu de Ternâcre. C'est une cité de mages archivistes, mais c'est aussi ici qu'on trouve la plus grande population carcérale de l'Alliance.",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Tourgrise",
|
||||
"markerCoords": {
|
||||
"x": 132.26953,
|
||||
"y": -98.19141
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "capitals",
|
||||
"title": "Valsoie",
|
||||
"description": "Chef-lieu de Mireloin.",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Valsoie",
|
||||
"markerCoords": {
|
||||
"x": 103.4375,
|
||||
"y": -79.5
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "capitals",
|
||||
"title": "Prismalline",
|
||||
"description": "Chef-lieu de Corambre.",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Prismalline",
|
||||
"markerCoords": {
|
||||
"x": 103.00329,
|
||||
"y": -138.02162
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "capitals",
|
||||
"title": "Port-brisé",
|
||||
"description": "Chef-lieu d'Émerose.",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Port-brisé",
|
||||
"markerCoords": {
|
||||
"x": 168.39491,
|
||||
"y": -109.13376
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "capitals",
|
||||
"title": "Berce",
|
||||
"description": "Chef-lieu des Basses-berges.",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Berce",
|
||||
"markerCoords": {
|
||||
"x": 173.39874,
|
||||
"y": -164.39011
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "capitals",
|
||||
"title": "Lamière",
|
||||
"description": "Chef-lieu de Quillon.",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Lamière",
|
||||
"markerCoords": {
|
||||
"x": 140.20731,
|
||||
"y": -195.77923
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "capitals",
|
||||
"title": "Halport",
|
||||
"description": "Chef-lieu de Lagarde.",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Halport",
|
||||
"markerCoords": {
|
||||
"x": 76.6803,
|
||||
"y": -198.76159
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "capitals",
|
||||
"title": "Soubreciel",
|
||||
"description": "Chef-lieu de Rougefer.",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Soubreciel",
|
||||
"markerCoords": {
|
||||
"x": 204.42515,
|
||||
"y": -226.85883
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "capitals",
|
||||
"title": "Dramast",
|
||||
"description": "Chef-lieu d'Asharos.",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Dramast",
|
||||
"markerCoords": {
|
||||
"x": 119.35456,
|
||||
"y": -27.53623
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "capitals",
|
||||
"title": "Briseroc",
|
||||
"description": "Chef-lieu de Pergaré.",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Briseroc",
|
||||
"markerCoords": {
|
||||
"x": 41.96763,
|
||||
"y": -48.83056
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "capitals",
|
||||
"title": "Demilieu",
|
||||
"description": "Ancienne cité militaire laissée à l'abandon depuis plusieurs centaines d'années.",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Demilieu",
|
||||
"markerCoords": {
|
||||
"x": 204.75462,
|
||||
"y": -116.80687
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Borélis",
|
||||
"description": "Cité côtière vivant principalement de la pêche.",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Borélis",
|
||||
"markerCoords": {
|
||||
"x": 138.44531,
|
||||
"y": -51.54687
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Alcombe",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Alcombe",
|
||||
"markerCoords": {
|
||||
"x": 165.42471,
|
||||
"y": -164.00393
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Cristaline",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Cristaline",
|
||||
"markerCoords": {
|
||||
"x": 167.06242,
|
||||
"y": -176.47233
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Vidinamel",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Vidinamel",
|
||||
"markerCoords": {
|
||||
"x": 176.40469,
|
||||
"y": -199.94666
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Cantane",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Cantane",
|
||||
"markerCoords": {
|
||||
"x": 196.00387,
|
||||
"y": -210.9071
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Horfer",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Horfer",
|
||||
"markerCoords": {
|
||||
"x": 185.57431,
|
||||
"y": -229.08588
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Cimeterre",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Cimeterre",
|
||||
"markerCoords": {
|
||||
"x": 143.16512,
|
||||
"y": -217.37201
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Aubert",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Aubert",
|
||||
"markerCoords": {
|
||||
"x": 140.19456,
|
||||
"y": -201.85993
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Telos",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Telos",
|
||||
"markerCoords": {
|
||||
"x": 104.61938,
|
||||
"y": -204.35683
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Saint-Amanthe",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Saint-Amanthe",
|
||||
"markerCoords": {
|
||||
"x": 83.88068,
|
||||
"y": -196.35341
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Flauvent",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Flauvent",
|
||||
"markerCoords": {
|
||||
"x": 77.58332,
|
||||
"y": -210.22326
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Nardion",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Nardion",
|
||||
"markerCoords": {
|
||||
"x": 43.56226,
|
||||
"y": -218.19662
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Granvert",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Granvert",
|
||||
"markerCoords": {
|
||||
"x": 63.47312,
|
||||
"y": -192.67867
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Olydra",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Olydra",
|
||||
"markerCoords": {
|
||||
"x": 92.24383,
|
||||
"y": -179.9298
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Vermeil",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Vermeil",
|
||||
"markerCoords": {
|
||||
"x": 98.86066,
|
||||
"y": -185.63039
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Corindon",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Corindon",
|
||||
"markerCoords": {
|
||||
"x": 85.04465,
|
||||
"y": -173.44829
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Verdame",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Verdame",
|
||||
"markerCoords": {
|
||||
"x": 93.64841,
|
||||
"y": -155.23226
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Sellier",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Sellier",
|
||||
"markerCoords": {
|
||||
"x": 112.8161,
|
||||
"y": -165.85315
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Fort-Altare",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Fort-Altare",
|
||||
"markerCoords": {
|
||||
"x": 123.1809,
|
||||
"y": -156.79472
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Naegir",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Naegir",
|
||||
"markerCoords": {
|
||||
"x": 111.22838,
|
||||
"y": -142.46072
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Silène",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Silène",
|
||||
"markerCoords": {
|
||||
"x": 129.49372,
|
||||
"y": -127.83022
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Astelion",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Astelion",
|
||||
"markerCoords": {
|
||||
"x": 149.80364,
|
||||
"y": -141.47096
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Mythuse",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Mythuse",
|
||||
"markerCoords": {
|
||||
"x": 101.52778,
|
||||
"y": -119.3854
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Celadonis",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Celadonis",
|
||||
"markerCoords": {
|
||||
"x": 121.39631,
|
||||
"y": -107.59972
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Mestrl",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Mestrl",
|
||||
"markerCoords": {
|
||||
"x": 141.59822,
|
||||
"y": -112.96104
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Pyranae",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Pyranae",
|
||||
"markerCoords": {
|
||||
"x": 191.89054,
|
||||
"y": -166.99251
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Liserios",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Liserios",
|
||||
"markerCoords": {
|
||||
"x": 187.69872,
|
||||
"y": -101.89283
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Armistille",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Armistille",
|
||||
"markerCoords": {
|
||||
"x": 187.72908,
|
||||
"y": -111.21423
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Gasterre",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Gasterre",
|
||||
"markerCoords": {
|
||||
"x": 167.39995,
|
||||
"y": -144.62217
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Valversant",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Valversant",
|
||||
"markerCoords": {
|
||||
"x": 177.56325,
|
||||
"y": -156.35054
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Becqueraut",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Becqueraut",
|
||||
"markerCoords": {
|
||||
"x": 129.06038,
|
||||
"y": -190.31194
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Grasselieu",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Grasselieu",
|
||||
"markerCoords": {
|
||||
"x": 148.54698,
|
||||
"y": -185.44567
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Asandre",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Asandre",
|
||||
"markerCoords": {
|
||||
"x": 125.35658,
|
||||
"y": -95.44555
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Félisse",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Félisse",
|
||||
"markerCoords": {
|
||||
"x": 138.45867,
|
||||
"y": -87.15509
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Zélira",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Zélira",
|
||||
"markerCoords": {
|
||||
"x": 151.79771,
|
||||
"y": -89.78763
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Anderol",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Anderol",
|
||||
"markerCoords": {
|
||||
"x": 88.08019,
|
||||
"y": -76.54403
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Denteloin",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Denteloin",
|
||||
"markerCoords": {
|
||||
"x": 99.26192,
|
||||
"y": -94.88901
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Willeau",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Willeau",
|
||||
"markerCoords": {
|
||||
"x": 107.50352,
|
||||
"y": -67.36631
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Borglah",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Borglah",
|
||||
"markerCoords": {
|
||||
"x": 91.03982,
|
||||
"y": -57.75967
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Karlas",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Karlas",
|
||||
"markerCoords": {
|
||||
"x": 133.5332,
|
||||
"y": -44.42783
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Sérak",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Sérak",
|
||||
"markerCoords": {
|
||||
"x": 127.10271,
|
||||
"y": -18.2676
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "cities",
|
||||
"title": "Plumeroche",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Plumeroche",
|
||||
"markerCoords": {
|
||||
"x": 52.68144,
|
||||
"y": -44.71821
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "landmarks",
|
||||
"title": "L'Ange d'Aldys",
|
||||
"description": "",
|
||||
"markerCoords": {
|
||||
"x": 89.08707,
|
||||
"y": -166.49361
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "landmarks",
|
||||
"title": "Les Cages Handaniennes",
|
||||
"description": "Complexe pénitencier réservé aux criminels maîtrisant la magie.",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Cages_Handaniennes",
|
||||
"markerCoords": {
|
||||
"x": 168.31641,
|
||||
"y": -60.54297
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "landmarks",
|
||||
"title": "Solemthelio",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Solemthelio",
|
||||
"markerCoords": {
|
||||
"x": 174.22358,
|
||||
"y": -197.04778
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "landmarks",
|
||||
"title": "Temple du soleil",
|
||||
"description": "",
|
||||
"link": "https://alexcreates.fr/leim/index.php?title=Temple du soleil",
|
||||
"markerCoords": {
|
||||
"x": 58.89295,
|
||||
"y": -189.69308
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
8
src/components/maps/data/players.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"markerCoords": {
|
||||
"y": -57.83673,
|
||||
"x": 162.05197
|
||||
},
|
||||
"title": "L'Éclipse",
|
||||
"description": "Tara Belyus, Vascylly et Adol Sulvan livrent 3 condamnés à Handany."
|
||||
}
|
||||
@@ -1,15 +1,14 @@
|
||||
<script setup lang="ts">
|
||||
import { allTasks } from 'nanostores';
|
||||
import { useStore } from '@nanostores/vue'
|
||||
import { $world } from '../worldStore';
|
||||
|
||||
import type { MapMarker, PlayerMarker } from '@/types/Leaflet';
|
||||
import { useFocus, useMagicKeys, whenever } from '@vueuse/core';
|
||||
import { computed, onMounted, ref, onUpdated } from 'vue';
|
||||
|
||||
$world.listen(() => {})
|
||||
await allTasks()
|
||||
const props = defineProps<{
|
||||
markers: MapMarker[],
|
||||
players: PlayerMarker,
|
||||
}>()
|
||||
|
||||
const { markers } = useStore($world).value
|
||||
const markers = props.markers
|
||||
|
||||
// Search functions
|
||||
const qInput = ref()
|
||||
|
||||
@@ -1,43 +0,0 @@
|
||||
import { deepMap, onMount, task } from 'nanostores'
|
||||
import type { MapMarker, PlayerMarker } from '../../types/Leaflet';
|
||||
|
||||
let baseUrl: string
|
||||
|
||||
const isDev = import.meta.env.DEV;
|
||||
|
||||
if (isDev) {
|
||||
baseUrl = "http://localhost:4321/"
|
||||
} else {
|
||||
baseUrl = import.meta.env.SITE
|
||||
}
|
||||
|
||||
export const $world = deepMap({
|
||||
markers: [] as MapMarker[],
|
||||
players: {} as PlayerMarker,
|
||||
})
|
||||
|
||||
// Fetch initial data
|
||||
onMount($world, () => {
|
||||
// Fetch all markers
|
||||
task(async () => {
|
||||
let m
|
||||
try {
|
||||
m = await fetch(`${baseUrl}/api/markers.json`)
|
||||
|
||||
$world.setKey('markers', await m.json())
|
||||
} catch (err) {
|
||||
console.log(err)
|
||||
}
|
||||
})
|
||||
// Fetch all player data
|
||||
task(async () => {
|
||||
let p
|
||||
try {
|
||||
p = await fetch(`${baseUrl}/api/players.json`)
|
||||
|
||||
$world.setKey('players', await p.json())
|
||||
} catch (err) {
|
||||
console.log(err)
|
||||
}
|
||||
})
|
||||
})
|
||||
@@ -1,10 +0,0 @@
|
||||
import type { PlayerMarker } from "@/types/Leaflet";
|
||||
|
||||
export const playerPosition: PlayerMarker = {
|
||||
markerCoords: {
|
||||
y: -57.83673,
|
||||
x: 162.05197
|
||||
},
|
||||
title: "L'Éclipse",
|
||||
description: "Tara Belyus, Vascylly et Adol Sulvan livrent 3 condamnés à Handany."
|
||||
}
|
||||
@@ -1,603 +0,0 @@
|
||||
import type { MapMarker } from "@/types/Leaflet";
|
||||
|
||||
export const worldMarkers: MapMarker[] = [
|
||||
{
|
||||
group: "capitals",
|
||||
title: "Ambrose",
|
||||
description: "Chef-lieu de Nacride et Capitale économique de l'Alliance Kaldélienne.",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Ambrose",
|
||||
markerCoords: {
|
||||
x: 83.6,
|
||||
y: -185.2,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "capitals",
|
||||
title: "Cordouac",
|
||||
description: "Chef-lieu d'Héraldie et Capitale administrative de l'Alliance Kaldélienne.",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Cordouac",
|
||||
markerCoords: {
|
||||
x: 133.46875,
|
||||
y: -146.0625 ,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "capitals",
|
||||
title: "Bordelac",
|
||||
description: "Chef-lieu des Hautes-Berges",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Bordelac",
|
||||
markerCoords: {
|
||||
x: 151.22656,
|
||||
y: -173.63281,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "capitals",
|
||||
title: "Tourgrise",
|
||||
description: "Chef-lieu de Ternâcre. C'est une cité de mages archivistes, mais c'est aussi ici qu'on trouve la plus grande population carcérale de l'Alliance.",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Tourgrise",
|
||||
markerCoords: {
|
||||
x: 132.26953,
|
||||
y: -98.19141,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "capitals",
|
||||
title: "Valsoie",
|
||||
description: "Chef-lieu de Mireloin.",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Valsoie",
|
||||
markerCoords: {
|
||||
x: 103.4375,
|
||||
y: -79.5,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "capitals",
|
||||
title: "Prismalline",
|
||||
description: "Chef-lieu de Corambre.",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Prismalline",
|
||||
markerCoords: {
|
||||
x: 103.00329,
|
||||
y: -138.02162,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "capitals",
|
||||
title: "Port-brisé",
|
||||
description: "Chef-lieu d'Émerose.",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Port-brisé",
|
||||
markerCoords: {
|
||||
x: 168.39491,
|
||||
y: -109.13376,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "capitals",
|
||||
title: "Berce",
|
||||
description: "Chef-lieu des Basses-berges.",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Berce",
|
||||
markerCoords: {
|
||||
x: 173.39874,
|
||||
y: -164.39011,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "capitals",
|
||||
title: "Lamière",
|
||||
description: "Chef-lieu de Quillon.",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Lamière",
|
||||
markerCoords: {
|
||||
x: 140.20731,
|
||||
y: -195.77923,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "capitals",
|
||||
title: "Halport",
|
||||
description: "Chef-lieu de Lagarde.",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Halport",
|
||||
markerCoords: {
|
||||
x: 76.6803,
|
||||
y: -198.76159,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "capitals",
|
||||
title: "Soubreciel",
|
||||
description: "Chef-lieu de Rougefer.",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Soubreciel",
|
||||
markerCoords: {
|
||||
x: 204.42515,
|
||||
y: -226.85883,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "capitals",
|
||||
title: "Dramast",
|
||||
description: "Chef-lieu d'Asharos.",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Dramast",
|
||||
markerCoords: {
|
||||
x: 119.35456,
|
||||
y: -27.53623,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "capitals",
|
||||
title: "Briseroc",
|
||||
description: "Chef-lieu de Pergaré.",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Briseroc",
|
||||
markerCoords: {
|
||||
x: 41.96763,
|
||||
y: -48.83056,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "capitals",
|
||||
title: "Demilieu",
|
||||
description: "Ancienne cité militaire laissée à l'abandon depuis plusieurs centaines d'années.",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Demilieu",
|
||||
markerCoords: {
|
||||
x: 204.75462,
|
||||
y: -116.80687,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Borélis",
|
||||
description: "Cité côtière vivant principalement de la pêche.",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Borélis",
|
||||
markerCoords: {
|
||||
x: 138.44531,
|
||||
y: -51.54687,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Alcombe",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Alcombe",
|
||||
markerCoords: {
|
||||
x: 165.42471,
|
||||
y: -164.00393,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Cristaline",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Cristaline",
|
||||
markerCoords: {
|
||||
x: 167.06242,
|
||||
y: -176.47233,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Vidinamel",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Vidinamel",
|
||||
markerCoords: {
|
||||
x: 176.40469,
|
||||
y: -199.94666,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Cantane",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Cantane",
|
||||
markerCoords: {
|
||||
x: 196.00387,
|
||||
y: -210.9071,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Horfer",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Horfer",
|
||||
markerCoords: {
|
||||
x: 185.57431,
|
||||
y: -229.08588,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Cimeterre",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Cimeterre",
|
||||
markerCoords: {
|
||||
x: 143.16512,
|
||||
y: -217.37201,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Aubert",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Aubert",
|
||||
markerCoords: {
|
||||
x: 140.19456,
|
||||
y: -201.85993,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Telos",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Telos",
|
||||
markerCoords: {
|
||||
x: 104.61938,
|
||||
y: -204.35683,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Saint-Amanthe",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Saint-Amanthe",
|
||||
markerCoords: {
|
||||
x: 83.88068,
|
||||
y: -196.35341,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Flauvent",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Flauvent",
|
||||
markerCoords: {
|
||||
x: 77.58332,
|
||||
y: -210.22326,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Nardion",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Nardion",
|
||||
markerCoords: {
|
||||
x: 43.56226,
|
||||
y: -218.19662,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Granvert",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Granvert",
|
||||
markerCoords: {
|
||||
x: 63.47312,
|
||||
y: -192.67867,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Olydra",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Olydra",
|
||||
markerCoords: {
|
||||
x: 92.24383,
|
||||
y: -179.9298,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Vermeil",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Vermeil",
|
||||
markerCoords: {
|
||||
x: 98.86066,
|
||||
y: -185.63039,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Corindon",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Corindon",
|
||||
markerCoords: {
|
||||
x: 85.04465,
|
||||
y: -173.44829,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Verdame",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Verdame",
|
||||
markerCoords: {
|
||||
x: 93.64841,
|
||||
y: -155.23226,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Sellier",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Sellier",
|
||||
markerCoords: {
|
||||
x: 112.8161,
|
||||
y: -165.85315,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Fort-Altare",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Fort-Altare",
|
||||
markerCoords: {
|
||||
x: 123.1809,
|
||||
y: -156.79472,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Naegir",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Naegir",
|
||||
markerCoords: {
|
||||
x: 111.22838,
|
||||
y: -142.46072,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Silène",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Silène",
|
||||
markerCoords: {
|
||||
x: 129.49372,
|
||||
y: -127.83022,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Astelion",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Astelion",
|
||||
markerCoords: {
|
||||
x: 149.80364,
|
||||
y: -141.47096,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Mythuse",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Mythuse",
|
||||
markerCoords: {
|
||||
x: 101.52778,
|
||||
y: -119.3854,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Celadonis",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Celadonis",
|
||||
markerCoords: {
|
||||
x: 121.39631,
|
||||
y: -107.59972,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Mestrl",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Mestrl",
|
||||
markerCoords: {
|
||||
x: 141.59822,
|
||||
y: -112.96104,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Pyranae",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Pyranae",
|
||||
markerCoords: {
|
||||
x: 191.89054,
|
||||
y: -166.99251,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Liserios",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Liserios",
|
||||
markerCoords: {
|
||||
x: 187.69872,
|
||||
y: -101.89283,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Armistille",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Armistille",
|
||||
markerCoords: {
|
||||
x: 187.72908,
|
||||
y: -111.21423,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Gasterre",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Gasterre",
|
||||
markerCoords: {
|
||||
x: 167.39995,
|
||||
y: -144.62217,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Valversant",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Valversant",
|
||||
markerCoords: {
|
||||
x: 177.56325,
|
||||
y: -156.35054,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Becqueraut",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Becqueraut",
|
||||
markerCoords: {
|
||||
x: 129.06038,
|
||||
y: -190.31194,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Grasselieu",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Grasselieu",
|
||||
markerCoords: {
|
||||
x: 148.54698,
|
||||
y: -185.44567,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Asandre",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Asandre",
|
||||
markerCoords: {
|
||||
x: 125.35658,
|
||||
y: -95.44555,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Félisse",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Félisse",
|
||||
markerCoords: {
|
||||
x: 138.45867,
|
||||
y: -87.15509,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Zélira",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Zélira",
|
||||
markerCoords: {
|
||||
x: 151.79771,
|
||||
y: -89.78763,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Anderol",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Anderol",
|
||||
markerCoords: {
|
||||
x: 88.08019,
|
||||
y: -76.54403,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Denteloin",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Denteloin",
|
||||
markerCoords: {
|
||||
x: 99.26192,
|
||||
y: -94.88901,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Willeau",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Willeau",
|
||||
markerCoords: {
|
||||
x: 107.50352,
|
||||
y: -67.36631,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Borglah",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Borglah",
|
||||
markerCoords: {
|
||||
x: 91.03982,
|
||||
y: -57.75967,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Karlas",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Karlas",
|
||||
markerCoords: {
|
||||
x: 133.5332,
|
||||
y: -44.42783,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Sérak",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Sérak",
|
||||
markerCoords: {
|
||||
x: 127.10271,
|
||||
y: -18.2676,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: "cities",
|
||||
title: "Plumeroche",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Plumeroche",
|
||||
markerCoords: {
|
||||
x: 52.68144,
|
||||
y: -44.71821,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: 'landmarks',
|
||||
title: "L'Ange d'Aldys",
|
||||
description: "",
|
||||
markerCoords: {
|
||||
x: 89.08707,
|
||||
y: -166.49361,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: 'landmarks',
|
||||
title: "Les Cages Handaniennes",
|
||||
description: "Complexe pénitencier réservé aux criminels maîtrisant la magie.",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Cages_Handaniennes",
|
||||
markerCoords: {
|
||||
x: 168.31641,
|
||||
y: -60.54297,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: 'landmarks',
|
||||
title: "Solemthelio",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Solemthelio",
|
||||
markerCoords: {
|
||||
x: 174.22358,
|
||||
y: -197.04778,
|
||||
}
|
||||
},
|
||||
{
|
||||
group: 'landmarks',
|
||||
title: "Temple du soleil",
|
||||
description: "",
|
||||
link: "https://alexcreates.fr/leim/index.php?title=Temple du soleil",
|
||||
markerCoords: {
|
||||
x: 58.89295,
|
||||
y: -189.69308,
|
||||
}
|
||||
}
|
||||
];
|
||||
@@ -1,8 +0,0 @@
|
||||
import type { APIRoute } from "astro";
|
||||
import { worldMarkers } from "./data/world.markers";
|
||||
|
||||
export const GET: APIRoute = ({ params, request }) => {
|
||||
return new Response(
|
||||
JSON.stringify(worldMarkers)
|
||||
)
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
import type { APIRoute } from "astro";
|
||||
import { playerPosition } from "./data/players.markers";
|
||||
|
||||
export const GET: APIRoute = ({ params, request }) => {
|
||||
return new Response(
|
||||
JSON.stringify(playerPosition)
|
||||
)
|
||||
}
|
||||