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