File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7777 >
7878 <v-icon :icon =" mdiTarget" ></v-icon >
7979 </v-btn >
80- <v-btn class =" action-button download-results" @click =" downloadResults" density =" comfortable"
80+ <v-btn
81+ class =" action-button download-results"
82+ @click =" downloadResults"
83+ density =" comfortable"
84+ title =" Export all detected fields as GeoJSON."
8185 >Download</v-btn
8286 >
8387 <v-btn
8488 class =" action-button clear-results"
8589 @click =" clearResultsHandler"
8690 color =" error"
8791 density =" compact"
92+ itle =" Remove these results from the map."
8893 >Clear</v-btn
8994 >
9095 </div >
Original file line number Diff line number Diff line change @@ -102,10 +102,16 @@ const handleViewOnMap = async () => {
102102 </div >
103103 <div class =" result-details" >
104104 <div >Date: {{ tile.date }}</div >
105- <div v-if =" typeof tile.cloudCover === 'number'" >
105+ <div
106+ v-if =" typeof tile.cloudCover === 'number'"
107+ title =" Percent of the scene obscured by clouds."
108+ >
106109 Cloud Cover: {{ tile.cloudCover.toFixed(1) }}%
107110 </div >
108- <div v-if =" typeof tile.areaCoverage === 'number'" >
111+ <div
112+ v-if =" typeof tile.areaCoverage === 'number'"
113+ title =" Percent of the tile area covered by valid data (e.g. not nodata or masked out)."
114+ >
109115 Area Coverage: {{ tile.areaCoverage.toFixed(1) }}%
110116 </div >
111117 </div >
Original file line number Diff line number Diff line change 11<script setup lang="ts">
22import MapComponent from ' ../components/MapComponent.vue'
3- import { mdiInformation } from ' @mdi/js'
43import { ref , watch } from ' vue'
54import useSettings from ' ../composables/useSettings'
65
You can’t perform that action at this time.
0 commit comments