Skip to content

Commit 17004a5

Browse files
committed
Update more texts
1 parent 927d0a2 commit 17004a5

2 files changed

Lines changed: 14 additions & 3 deletions

File tree

src/components/ProcessingResults.vue

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,14 +77,19 @@
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>

src/components/TilePreview.vue

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff 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>

0 commit comments

Comments
 (0)