当前位置: 首页 > 文档资料 > ThingJS 文档中心 >

Class: MapStyle

优质
小牛编辑
125浏览
2023-12-01

CMAP~ MapStyle

地图样式类


new MapStyle(options) → {MapStyle}

构造函数

Parameters:
NameTypeDescription
optionsObject

参数列表

Properties
NameTypeDescription
nightBoolean

是否开启白天黑夜 默认关闭

fogBoolean

是否开启雾效

fogDensityNumber

雾的浓度 默认0

fogExpDensityNumber

浓雾的浓度 默认0

fogExpColorNumber

浓雾的颜色 默认[255,255,255]

Returns:
Type
MapStyle

Members


fog :Boolean

是否开启雾效

Type:
  • Boolean
Example
map.style.fog = true;//开启雾效果

fogDensity :Number

雾的浓度

Type:
  • Number
Example
map.style.fogDensity = 0.5;//设置雾的浓度为0.5

fogExpDensity :Number

浓雾的浓度

Type:
  • Number
Example
map.style.fogExpDensity = 2;//设置浓雾的浓度为2

gradientColorBar :Array.<Number>

颜色渐变值,与gradientColorPerBar结合使用

Type:
  • Array.<Number>
Example
tileLayer.style.gradientColorBar = [[255.0, 0.0, 0.0], [0.0, 255.0, 0.0], [0.0, 0.0, 255.0]];// 颜色渐变值

gradientColorPerBar :Array.<Number>

颜色渐变区间,与gradientColorBar结合使用

Type:
  • Array.<Number>
Example
tileLayer.style.gradientColorPerBar = [0.0,0.5,1.0];// 颜色渐变区间

night :Boolean

是否开启白天黑夜

Type:
  • Boolean
Example
map.style.night = true;//开启白天黑夜效果