Add map page title, even in head

This commit is contained in:
Wolfgang Huß 2023-01-10 10:46:54 +01:00
parent f18b1202c1
commit 67fe5864c9
3 changed files with 45 additions and 32 deletions

View File

@ -523,6 +523,7 @@
"title": "{APPLICATION_NAME} befindet sich in der Wartung" "title": "{APPLICATION_NAME} befindet sich in der Wartung"
}, },
"map": { "map": {
"pageTitle": "Karte",
"styles": { "styles": {
"dark": "Dunkel", "dark": "Dunkel",
"outdoors": "Landschaft", "outdoors": "Landschaft",

View File

@ -523,6 +523,7 @@
"title": "{APPLICATION_NAME} is under maintenance" "title": "{APPLICATION_NAME} is under maintenance"
}, },
"map": { "map": {
"pageTitle": "Map",
"styles": { "styles": {
"dark": "Dark", "dark": "Dark",
"outdoors": "Outdoors", "outdoors": "Outdoors",

View File

@ -1,5 +1,10 @@
<!-- Example Reference: https://codesandbox.io/s/v-mapbox-with-nuxt-lbrt6?file=/pages/index.vue --> <!-- Example Reference: https://codesandbox.io/s/v-mapbox-with-nuxt-lbrt6?file=/pages/index.vue -->
<template> <template>
<div>
<ds-space margin="small">
<ds-heading tag="h1">{{ $t('map.pageTitle') }}</ds-heading>
</ds-space>
<ds-space margin="large" />
<client-only> <client-only>
<mgl-map <mgl-map
:mapbox-gl="mapboxgl" :mapbox-gl="mapboxgl"
@ -31,6 +36,7 @@
<MglMarker :coordinates="[10.452764, 51.165707]" color="blue" /> <MglMarker :coordinates="[10.452764, 51.165707]" color="blue" />
</mgl-map> </mgl-map>
</client-only> </client-only>
</div>
</template> </template>
<script> <script>
@ -39,6 +45,11 @@ import { objectValuesToArray } from '../utils/utils'
export default { export default {
name: 'Map', name: 'Map',
head() {
return {
title: this.$t('map.pageTitle'),
}
},
data() { data() {
return { return {
mapboxgl, mapboxgl,
@ -97,8 +108,8 @@ export default {
<style lang="scss"> <style lang="scss">
// description: https: //github.com/geospoc/v-mapbox/tree/v1.11.2/docs // description: https: //github.com/geospoc/v-mapbox/tree/v1.11.2/docs
// code example: https: //codesandbox.io/embed/v-mapbox-map-demo-k1l1n?autoresize=1&fontsize=14&hidenavigation=1&theme=dark // code example: https: //codesandbox.io/embed/v-mapbox-map-demo-k1l1n?autoresize=1&fontsize=14&hidenavigation=1&theme=dark
@import "mapbox-gl/dist/mapbox-gl.css"; @import 'mapbox-gl/dist/mapbox-gl.css';
@import "v-mapbox/dist/v-mapbox.css"; @import 'v-mapbox/dist/v-mapbox.css';
.mgl-map-wrapper { .mgl-map-wrapper {
height: 70vh; height: 70vh;