import * as Cesium from 'cesium' export const AREA_TYPE_STYLE_MAP = { '1': { fill: Cesium.Color.fromBytes(25, 178, 230, 128), outline: Cesium.Color.fromBytes(0, 251, 255, 255), }, '2': { fill: Cesium.Color.fromBytes(255, 235, 59, 128), outline: Cesium.Color.fromBytes(255, 235, 59, 255), }, '3': { fill: Cesium.Color.fromBytes(247, 20, 20, 128), outline: Cesium.Color.fromBytes(255, 0, 0, 255), }, } export const DEFAULT_AREA_STYLE = { fill: Cesium.Color.fromBytes(45, 140, 240, 99), outline: Cesium.Color.fromBytes(45, 140, 240, 255), } export const BUFFER_LEVEL_STYLES = [ { fill: Cesium.Color.fromBytes(247, 20, 20, 128), outline: Cesium.Color.fromBytes(255, 0, 0, 255), }, { fill: Cesium.Color.fromBytes(255, 235, 59, 128), outline: Cesium.Color.fromBytes(255, 235, 59, 255), }, { fill: Cesium.Color.fromBytes(25, 178, 230, 128), outline: Cesium.Color.fromBytes(0, 251, 255, 255), }, ]