nidus-sync/ts/components/FlyoverPoolCard.vue
Eli Ribble 4bbfbdb9e6
Pretty all the things I missed
My laptop didn't have lefthook running. Oops.
2026-03-27 14:06:50 -07:00

22 lines
518 B
Vue

<template>
<p>A flyover pool</p>
<MapProxiedArcgisTile
id="tile-map"
:latitude="pool.location.latitude"
:longitude="pool.location.longitude"
:markers="tileMapMarkers"
:organizationId="user.organization.id"
:tegola="user.urls.tegola"
/>
</template>
<script setup lang="ts">
import { useUserStore } from "../store/user";
import MapProxiedArcgisTile from "@/components/MapProxiedArcgisTile.vue";
interface Props {
pool: Pool;
}
const props = defineProps<Props>();
const user = useUserStore();
</script>