qwc2-lts
Version:
QGIS Web Client
7 lines • 579 B
JavaScript
/**
* Copyright 2024 Sourcepole AG
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*/export var SET_MAP_CRS="SET_MAP_CRS";export var SET_TOPBAR_HEIGHT="SET_TOPBAR_HEIGHT";export var SET_BOTTOMBAR_HEIGHT="SET_BOTTOMBAR_HEIGHT";export function setMapCrs(crs){return{type:SET_MAP_CRS,crs:crs}}export function setTopbarHeight(height){return{type:SET_TOPBAR_HEIGHT,height:height}}export function setBottombarHeight(height){return{type:SET_BOTTOMBAR_HEIGHT,height:height}}