Fix google maps links
All checks were successful
Deploy Spot / deploy (push) Successful in 38s

This commit is contained in:
2026-05-19 21:44:03 +02:00
parent c43539b640
commit 7f74263ba2
4 changed files with 6 additions and 3 deletions

View File

@@ -13,5 +13,6 @@ export default {
:title="lang.get('map.see_on_google')"
target="_blank"
rel="noreferrer noopener"
@click.stop
>{{ options.lat_dms+' '+options.lon_dms }}</a>
</template>

View File

@@ -67,8 +67,8 @@ export default {
<spotIcon :title="lang.get('stats.elevation_loss')" :icon="'elev-drop'" width="fixed" size="lg" :text="options.elev_drop+'m'" />
</div>
</div>
<div v-else-if="options.type=='project'" class="section time">
<spotIcon icon="time" width="fixed" size="lg" :text="activeTimeInterval" />
<div v-else-if="options.type=='project'" class="section">
<spotIcon icon="calendar" width="fixed" size="lg" :text="activeTimeInterval" />
</div>
<div v-else>
<div class="section time">

View File

@@ -192,7 +192,7 @@
</span>
<img class="staticmap clickable" :title="lang.get('media.click_zoom')" :src="options.static_img_url" />
<spotIconStack :mainClasses="'message drill-icon'" :iconMain="drillMainIcon" iconSub="footprint" :icon-sub-transform="'rotate-270'" />
<div class="comment">
<div class="comment" @click.stop>
<p v-if="!isMobile()">
<spotIcon :icon="'coords'" margin="right" size="lg" />
<projectMapLink :options="options" />

View File

@@ -1,6 +1,7 @@
import {
faArrowsRotate,
faBars,
faCalendar,
faCamera,
faCarSide,
faChartArea,
@@ -119,6 +120,7 @@ const ICONS = {
image: faImage,
message: faLocationPin,
time: faClock,
calendar: faCalendar,
coords: faCompass,
altitude: faMountain,
'drill-video': faCirclePlay,