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')" :title="lang.get('map.see_on_google')"
target="_blank" target="_blank"
rel="noreferrer noopener" rel="noreferrer noopener"
@click.stop
>{{ options.lat_dms+' '+options.lon_dms }}</a> >{{ options.lat_dms+' '+options.lon_dms }}</a>
</template> </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'" /> <spotIcon :title="lang.get('stats.elevation_loss')" :icon="'elev-drop'" width="fixed" size="lg" :text="options.elev_drop+'m'" />
</div> </div>
</div> </div>
<div v-else-if="options.type=='project'" class="section time"> <div v-else-if="options.type=='project'" class="section">
<spotIcon icon="time" width="fixed" size="lg" :text="activeTimeInterval" /> <spotIcon icon="calendar" width="fixed" size="lg" :text="activeTimeInterval" />
</div> </div>
<div v-else> <div v-else>
<div class="section time"> <div class="section time">

View File

@@ -192,7 +192,7 @@
</span> </span>
<img class="staticmap clickable" :title="lang.get('media.click_zoom')" :src="options.static_img_url" /> <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'" /> <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()"> <p v-if="!isMobile()">
<spotIcon :icon="'coords'" margin="right" size="lg" /> <spotIcon :icon="'coords'" margin="right" size="lg" />
<projectMapLink :options="options" /> <projectMapLink :options="options" />

View File

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