FitTrackee/fittrackee_client/src/components/Common/StaticMap.vue

70 lines
1.3 KiB
Vue
Raw Normal View History

2021-09-20 12:18:40 +02:00
<template>
<div class="static-map">
<div
class="bg-map-image"
:style="{
backgroundImage: `url(${getApiUrl()}workouts/map/${workout.map})`,
}"
2021-09-20 12:18:40 +02:00
/>
<div class="map-attribution">
<span class="map-attribution-text">©</span>
<a
class="map-attribution-text"
href="https://www.openstreetmap.org/copyright"
2021-09-20 12:18:40 +02:00
target="_blank"
rel="noopener noreferrer"
>
OpenStreetMap
</a>
</div>
</div>
</template>
<script lang="ts">
import { defineComponent, PropType } from 'vue'
import { IWorkout } from '@/types/workouts'
import { getApiUrl } from '@/utils'
export default defineComponent({
name: 'StaticMap',
props: {
workout: {
type: Object as PropType<IWorkout>,
required: true,
},
},
setup() {
return { getApiUrl }
},
})
</script>
<style lang="scss">
@import '~@/scss/base';
.static-map {
display: flex;
position: relative;
.bg-map-image {
background-size: cover;
background-position: center;
opacity: 0.6;
height: 200px;
width: 100%;
2021-09-20 12:18:40 +02:00
}
.map-attribution {
top: 0;
right: 0;
font-size: 11px;
position: absolute;
}
.map-attribution-text {
background-color: rgba(255, 255, 255, 0.7);
}
}
</style>