Limit max zoom to 16.

This commit is contained in:
Sascha L. Teichmann 2022-03-10 15:45:15 +01:00
parent ab5400881b
commit ad40381859
1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,6 @@
<template>
<v-container fluid style="height: 100%; padding: 0px">
<l-map @mousemove="update" ref="map" style="height: 100%" :zoom="zoom" :center="center" :worldCopyJump="worldCopyJump" :crs="crs" :options="mapOptions">
<l-map @mousemove="update" ref="map" style="height: 100%" :maxZoom="maxZoom" :zoom="zoom" :center="center" :worldCopyJump="worldCopyJump" :crs="crs" :options="mapOptions">
<l-tile-layer ref="baseLayer" :url="url" :attribution="attribution" :tms="tms" continuousWorld="false" minZoom=0 :noWrap="noWrap" :options="layerOptions"></l-tile-layer>
<div v-if="playersLayer">
<l-marker v-for="p in players" :key="p.name" :lat-lng="flipCoordinates(p.geometry.coordinates)" :icon="iconPlayer">
@ -43,6 +43,7 @@ export default {
socket: null,
url: 'map/{z}/{x}/{y}.png',
zoom: 3,
maxZoom: 16,
noWrap: true,
center: [0,0],
worldCopyJump: false,