Constructor
new Fluorescence(options)
Example
//构造地图对象
var map = new GeoGlobe.Map({
style: Cfg.style,
container: 'map',
zoom: 16,
bearing: 0,
pitch: 0,
units: "degrees",
center: [114.20509630753577, 30.776055193053764]
});
//构造可视化定制图层
var custom = new GeoGlobe.Visuals.Custom();
//添加到地图中
custom.addTo(map);
//通过jquery加载json数据
$.getJSON('../../data/xuzhou.json', function (result) {
var fluorescence = new GeoGlobe.Visuals.Custom.Fluorescence({
id: "fluorescence_1",
data: result.features,
visibility: true,
dragdrawing: true,
legend: {
show: true,
left: 10,
right: null,
top: 10,
bottom: null,
col: 1,
itemSize: 10,
symbol: "ring",
itemColors: ["rgba(0,255,255,0.7)", "rgba(255,215,0,0.7)", "rgba(255,140,0,0.7)", "rgba(127,255,170,0.7)", "rgba(0,255,255,0.7)", "rgba(255,215,0,0.7)", "rgba(255,140,0,0.7)", "rgba(127,255,170,0.7)", "rgba(0,255,255,0.7)", "rgba(255,215,0,0.7)", "rgba(255,140,0,0.7)", "rgba(127,255,170,0.7)", "rgba(0,255,255,0.7)", "rgba(255,215,0,0.7)", "rgba(255,140,0,0.7)", "rgba(127,255,170,0.7)", "rgba(0,255,255,0.7)", "rgba(255,215,0,0.7)", "rgba(255,140,0,0.7)"],
backgroundColor: "rgba(0,0,0,0.5)",
borderColor: "#000",
borderWidth: 1,
borderRadius: 0,
shadowColor: "#fff",
shadowBlur: 5,
shadowOffsetX: 0,
shadowOffsetY: 0,
padding: 5,
textStyle: {
color: "#fff",
fontFamily: "serif",
fontSize: 12,
fontStyle: "normal",
fontWeight: "normal"
}
},
legend_rightop: {
show: true,
left: null,
right: 10,
top: 10,
bottom: null,
col: 3,
itemSize: 10,
itemSize_ringBig: [7, 15],
itemSize_circle: [10, 15, 20, 25],
itemSize_ringSmall: [3, 8],
vLegendLabels: ["<66", "<95", "<99"],
itemWidth: 20,
itemHeight: 50,
backgroundColor: "rgba(0,0,0,0.5)",
borderColor: "#000",
borderWidth: 1,
borderRadius: 0,
shadowColor: "#fff",
shadowBlur: 5,
shadowOffsetX: 0,
shadowOffsetY: 0,
padding: 5,
textStyle: {
color: "#fff",
fontFamily: "serif",
fontSize: 12,
fontStyle: "normal",
fontWeight: "normal"
}
},
rendererOptions: {
markPoint: {
hoverable: true,
itemSymbol: ["ring", "ring", "circle"],
unactivatedDrawable: false,
symbolSize: 20,
effect: {
scaleSize: 3,
period: 30,
show: true
},
itemStyle: {
shadowColor: '#000',
shadowBlur: 0,
shadowOffsetX: 0,
shadowOffsetY: 0,
color: "rgba(0,255,255,0.7)"
}
},
tooltip: {
show: true,
backgroundColor: 'rgba(0,0,0,0.7)',
borderColor: '#333',
borderRadius: 0,
borderWidth: 0,
padding: 5,
textStyle: {
color: "#fff",
fontFamily: 'serif',
fontSize: 12,
fontStyle: 'normal',
fontWeight: 'normal'
}
}
}
});
//添加到可视化定制图层
fluorescence.addTo(custom);
//绘制
custom.render();
});
Parameters:
Name | Type | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options |
Object |
Properties
|
Members
cacheCanvas :Array
离屏画布集合
Type:
- Array
cacheCanvasContext :Array
离屏画布的上下文集合
Type:
- Array
canvas :Array
画布集合,使用分层画布分别绘制
Type:
- Array
canvasContext :Array
画布的上下文集合
Type:
- Array
legendLabels :Array
图例标签名数组
Type:
- Array
MarkPointsSet :function
标注对象集类
Type:
- function
markPointsSets :Array
标注对象集
Type:
- Array
visibility :Boolean
图层默认是否显示
Type:
- Boolean
Methods
addTo(custom)
关联可视化定制图层对象
Parameters:
Name | Type | Description |
---|---|---|
custom |
GeoGlobe.Visuals.Custom |
clearCanvas()
画布清空
destroy()
销毁图层
draw()
图层绘制
drawCanvas()
绘制标注集到画布
drawLegend(index)
绘制图例
Parameters:
Name | Type | Description |
---|---|---|
index |
Number | 当前绘制的类型索引 |
lazydraw()
图层懒绘制
onMove()
图层(地图)移动时触发
onMoveEnd()
图层(地图)移动结束触发
onResize()
图层自适应
redraw()
图层重绘
render()
渲染图层
setData(data)
数据的处理,构造标注对象集对象
Parameters:
Name | Type | Description |
---|---|---|
data |
Array | 数据 |
setVisible(visibility)
图层、图例的显示与隐藏
Parameters:
Name | Type | Description |
---|---|---|
visibility |
Boolean | 可见性 |
stopDraw()
停止绘制
updateXY()
重新计算标注集的屏幕坐标