File size: 1,132 Bytes
0914710
c75f9b4
7d2bd36
c75f9b4
7d2bd36
66a0f19
7d2bd36
66a0f19
c75f9b4
0914710
c92d24c
0914710
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
66a0f19
 
0914710
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<template>
  <PageLayout
    aboutThisDescription="LISA adapted to SamGIS on ZeroGPU"
    aboutThisUrl="https://trinca.tornidor.com/projects/lisa-adapted-for-samgis"
    currentPageUrl="https://aletrn-samgis-lisa-on-zero.hf.space"
    pageTitle="SamGIS+LISA+ZeroGPU"
    switchTabDescription="SamGIS on ZeroGPU demo"
    :switchTabUrl=switchTabUrlRef
  >
    <div>
      <div id="map-container-md-lisa">
        <PageLisaMap :mapName="mapName"
          :mapBounds='[
            { "lat": 46.172594687922256, "lng": 10.079248798586057 },
            { "lat": 46.16789155404419, "lng": 10.069077862001585 }
          ]'
          :description=description />
      </div>
    </div>
  </PageLayout>
</template>

<script setup lang="ts">
import { ref } from 'vue'

import PageLisaMap from '@/components/PageLisaMap.vue'
import PageLayout from '@/components/PageLayout.vue'

const switchTabUrl = import.meta.env.VITE_SAMGIS_URL ? import.meta.env.VITE_SAMGIS_URL : "/samgis"
const switchTabUrlRef = ref(switchTabUrl)
const mapName = ref('lisa-map')
const description = ref("This page displays predictions made with LISA VLM.")
</script>