Files
livetrail/src/components/projectMapLink.vue
T
franzz 7f74263ba2
Deploy Spot / deploy (push) Successful in 38s
Fix google maps links
2026-05-19 21:44:03 +02:00

19 lines
399 B
Vue

<script>
export default {
props: {
options: Object
},
inject: ['lang']
}
</script>
<template>
<a
:href="'https://www.google.com/maps/place/'+options.lat_dms+'+'+options.lon_dms+'/@'+options.latitude+','+options.longitude+',10z'"
:title="lang.get('map.see_on_google')"
target="_blank"
rel="noreferrer noopener"
@click.stop
>{{ options.lat_dms+' '+options.lon_dms }}</a>
</template>