Class: MapStyle
优质
小牛编辑
125浏览
2023-12-01
CMAP~ MapStyle
地图样式类
new MapStyle(options) → {MapStyle}
构造函数
Parameters:
Name | Type | Description | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options | Object | 参数列表 Properties
|
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;//开启白天黑夜效果