| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- <template>
- <LayoutContainer>
- <v-responsive :aspect-ratio="1" width="100%">
- <!-- /!\ We do not use the nuxt-leaflet library here,
- because in its current version it's way too slow to deal with hundreds of markers -->
- <div id="map" />
- </v-responsive>
- <div class="advice">
- {{ $t("click_on_land_to_go_there") }}
- </div>
- <v-row class="map-shortcuts">
- <v-col v-for="shortcut in shortcuts" :key="shortcut.src" cols="2">
- <div @click="setMapBounds(shortcut.bounds)">
- <nuxt-img
- :src="shortcut.src"
- :alt="shortcut.alt"
- />
- </div>
- </v-col>
- </v-row>
- </LayoutContainer>
- </template>
- <script lang="ts">
- import 'leaflet/dist/leaflet.css'
- import {
- GridLayer,
- LatLngBounds,
- LatLngBoundsExpression, LatLngBoundsLiteral,
- LatLngTuple,
- MapOptions
- } from 'leaflet'
- import Vue from 'vue'
- let L: any
- if (typeof window !== 'undefined') {
- // only require leaflet on client-side
- L = require('leaflet')
- }
- export default Vue.extend({
- props: {
- structures: {
- type: Array as () => Array<Structure>,
- required: false,
- default: () => []
- }
- },
- data () {
- const options: MapOptions = { scrollWheelZoom: false, zoomSnap: 0.25 }
- return {
- map: L.map('map', options),
- defaultBounds: new LatLngBounds([51.03, -5.78], [41.2, 9.70]),
- shortcuts: [
- { src: '/images/metropole.png', alt: 'Metropole', bounds: [[51.03, -5.78], [41.2, 9.70]] },
- { src: '/images/guadeloupe.png', alt: 'Guadeloupe', bounds: [[16.62, -62.03], [15.74, -60.97]] },
- { src: '/images/martinique.png', alt: 'Martinique', bounds: [[14.95, -61.43], [14.28, -60.60]] },
- { src: '/images/mayotte.png', alt: 'Mayotte', bounds: [[-12.51, 44.86], [-13.19, 45.45]] },
- { src: '/images/la_reunion.png', alt: 'La Réunion', bounds: [[-20.65, 54.92], [-21.65, 56.15]] },
- { src: '/images/guyane.png', alt: 'Guyane', bounds: [[6.24, -54.62], [1.87, -50.59]] }
- ],
- zoomRequired: false
- }
- },
- watch: {
- structures (oldVal: Array<Structure>, newVal: Array<Structure>) {
- if (oldVal !== newVal) {
- this.populateMarkers()
- }
- if (this.zoomRequired) {
- this._fitBoundsToMarkers()
- this.zoomRequired = false
- }
- }
- },
- mounted () {
- const defaultCenter: Array<number> = [46.71, 1.94]
- const defaultZoom: number = 5.75
- const layerSource: string = 'http://{s}.tile.osm.org/{z}/{x}/{y}.png'
- const attribution: string = '© <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
- this.map.setView(defaultCenter, defaultZoom)
- L.tileLayer(layerSource, { attribution }).addTo(this.map)
- this.populateMarkers()
- this.map.on('zoomend moveend', () => {
- this.$emit('boundsUpdated', this.map.getBounds())
- })
- },
- beforeDestroy () {
- if (this.map) {
- this.map.remove()
- }
- },
- methods: {
- populateMarkers () {
- // remove any existant marker layers
- this.map.eachLayer((layer: GridLayer) => {
- if (layer instanceof L.MarkerClusterGroup) {
- this.map.removeLayer(layer)
- }
- })
- // populate new layer
- const clusters = L.markerClusterGroup()
- for (const s of this.structures) {
- if (!s.latitude || !s.longitude) { continue }
- const marker = L.marker([s.latitude, s.longitude])
- marker.bindPopup(`<b>${s.name}</b><br/>${s.postalCode} ${s.addressCity}<br/><a href="${s.website}" target="_blank">${s.website}</a>`)
- clusters.addLayer(marker)
- }
- this.map.addLayer(clusters)
- },
- setMapBounds (bounds: LatLngBoundsExpression) {
- this.map.fitBounds(bounds) // << without this, the new bounds may not be properly set when the current view overlaps the new bounds.
- },
- resetBounds () {
- this.setMapBounds(this.defaultBounds)
- },
- zoomOnResults () {
- this.zoomRequired = true
- },
- _fitBoundsToMarkers () {
- const coords: LatLngBoundsLiteral = this.structures.filter(
- (s) => {
- return (
- s.latitude && typeof s.latitude !== 'undefined' &&
- s.longitude && typeof s.latitude !== 'undefined'
- )
- }
- ).map(
- (s) => { return [s.latitude as number, s.longitude as number] as LatLngTuple }
- )
- if (!coords) {
- return
- }
- this.setMapBounds(coords)
- }
- }
- })
- </script>
- <style scoped>
- #map {
- height: 100%;
- width: 100%;
- }
- .advice {
- margin: 1rem 0;
- color: #262626;
- font-weight: 750;
- text-align: center;
- font-size: 0.9rem;
- width: 100%;
- }
- .map-shortcuts {
- padding: 12px 6px;
- }
- .map-shortcuts img {
- border: solid 1px #000;
- width: 75px;
- height: 75px;
- }
- </style>
|