Toggle navigation
3D-Demo
By
经***4
2017-08-16 03:32:49
脚本
16
21
作品使用的第三方脚本
http://echarts.baidu.com/resource/echarts-gl-latest/dist/echarts-gl.min.js,/dep/echarts/map/js/world.js
数据管理
上传数据
支持小于 5M 任意格式(csv, xlsx, json, xml, ...)的数据文件
上传后可以通过生成的文件链接异步获取托管的数据。
历史数据
0 条
无历史数据
代码修改记录
信息提示
保存作品
对当前截图不满意?你还可以
上传本地截图
重新截图
作品名称
作品描述
标签
geo
grid
legend
markLine
markPoint
bar
effectScatter
line
lines
map
timeline
title
toolbox
tooltip
visualMap
作品默认版本
最新
16
15
14
13
12
11
10
9
8
7
6
5
4
3
2
1
20:11:45
图表已生成
整理代码
刷新
代码
var uploadedDataURL = "/asset/get/s/data-1482909818685-H17FOkZSl.json"; let data = [{ name: '长沙市', value: 12 }, { name: '株洲市', value: 12 }, { name: '湘潭市', value: 12 }, { name: '岳阳市', value: 14 }, { name: '益阳市', value: 27 }, { name: '常德市', value: 25 }, { name: '娄底市', value: 26 }, { name: '衡阳市', value: 26 }, { name: '郴州市', value: 26 }, { name: '永州市', value: 27 }, { name: '邵阳市', value: 27 }, { name: '怀化市', value: 27 }, { name: '湘西土家族苗族自治州', value: 28 }, { name: '张家界市', value: 29 }, ]; let geoCoordMap = { '长沙市': [113, 28.21], '株洲市': [113.09, 27.51], '湘潭市': [112.53, 27.52], '岳阳市': [113.06, 29.22], '益阳市': [112.20, 28.36], '常德市': [111.69, 29.05], '娄底市': [111.59, 27.44], '衡阳市': [112.37, 26.53], '郴州市': [113.02, 25.46], '永州市': [111.37, 26.13], '邵阳市': [111.28, 27.14], '怀化市': [109.58, 27.33], '湘西土家族苗族自治州': [109.73, 28.32], '张家界市': [110.29, 29.08], }; let convertData = function(data) { let res = []; for (let i = 0; i < data.length; i++) { let geoCoord = geoCoordMap[data[i].name]; if (geoCoord) { res.push({ name: data[i].name, value: geoCoord.concat(data[i].value) }); } } return res; }; /** * priority tooltip朝向(top/bottom) * left, top 为默认值 * 根据展示内容需要微调text的宽高 */ let left = false, top = false, priority = 'top' // 自定义tooltip配置属性 let config = { ecBoxId: 'chart-panel', lineColor: '#fff', L1: { time: 0.3, long: 40 }, L2: { time: 0.3, long: 40 }, text: { time: 0.5, text: '', font: '14px Arial', color: '#fff', padding: [10, 10], width: 120, height: 60, lineHeight: 24, backgroundColor: 'rgba(50, 50, 50, 0.8)' } } option = { title: { top: 10, text: '引导线tooltip轮播动画效果', subtext: '点击查看github最新代码', sublink: 'https://github.com/Mying666/myEcTooltip', subtextStyle: { color: '#ccc' }, left: 'center', textStyle: { color: '#fff' } }, backgroundColor: '#404a59', tooltip: { trigger: 'item', triggerOn: 'click', backgroundColor: 'transparent', alwaysShowContent: true, position(pos) { let position = getPosOrSize('pos', pos) return position }, formatter(params, p, a) { canvasAnimation(params) let size = getPosOrSize('size') let tooltipDom = `
123
` return tooltipDom } }, legend: { show: false }, geo: { map: 'china', label: { emphasis: { show: false } }, roam: false, itemStyle: { normal: { areaColor: '#323c48', borderColor: '#111' }, emphasis: { areaColor: '#2a333d' } } }, series: [{ name: 'Tooltip Test', type: 'effectScatter', coordinateSystem: 'geo', data: convertData(data.sort(function(a, b) { return b.value - a.value; }).slice(0, 50)), symbolSize: function(val) { return val[2] / 5; }, showEffectOn: 'render', rippleEffect: { brushType: 'stroke' }, hoverAnimation: true, label: { normal: { formatter: '{b}', position: 'right', show: true } }, itemStyle: { normal: { color: '#f4e925', shadowBlur: 10, shadowColor: '#333' } }, zlevel: 1 }] }; const canvasAnimation = params => { setTimeout(function() { config.text.text = `地点:${params.name}\n数量:${params.value[2]}` new myTooltip('tCanvas', config) }, 0); } // 计算tooltip位置 const getPosOrSize = (type, point) => { let x1 = config.L1.long * Math.sin(Math.PI / 4) let width = x1 + config.L2.long + config.text.width, height = x1 + config.text.height / 2 if (type === 'size') { config.width = width config.height = height return { width, height } } else { let box = document.getElementById(config.ecBoxId), bw = box.offsetWidth, bh = box.offsetHeight, x = point[0], y = point[1] left = false if (x + width >= bw / 1.2) { x = x - width - 5 left = true } if (priority === 'top') { // L1向上 top = true y = y - height - 5 if (y <= 0) { y = point[1] top = false } return [x, y] } else { top = false if (y + height >= bh) { y = y - height - 5 top = true } return [x, y] } } } class myTooltip { constructor(id, config) { this.config = config this.totalTime = 0 this.stage = new createjs.Stage(id) this.timeline = new TimelineMax({ repeat: 0 }) this.g = new createjs.Graphics() this.lineShape = new createjs.Shape(this.g) this.textShape = new createjs.Shape() this.stage.addChild(this.lineShape, this.textShape) this.init() this.begin() this.update() } init() { this.start = [0, 0] if (left) { this.start[0] = this.config.width } if (top) { this.start[1] = this.config.height } } begin() { this.L1() this.L2() this.addText() } L1() { let me = this let c = me.config let tl = new TimelineMax() let scale = { s: 0 }, x = c.L1.long * Math.sin(Math.PI / 4) if (left) { if (top) { this.L1End = [me.start[0] - x, me.start[1] - x] } else { this.L1End = [me.start[0] - x, me.start[1] + x] } } else { if (top) { this.L1End = [x, me.start[1] - x] } else { this.L1End = [x, x] } } tl.to(scale, c.L1.time, { s: 1, onUpdate() { let s = scale.s if (left) { if (top) { me.g.c().s(c.lineColor).mt(...me.start).lt(me.start[0] - x * s, me.start[1] - x * s) } else { me.g.c().s(c.lineColor).mt(...me.start).lt(me.start[0] - x * s, me.start[1] + x * s) } } else { if (top) { me.g.c().s(c.lineColor).mt(...me.start).lt(x * s, me.start[1] - x * s) } else { me.g.c().s(c.lineColor).mt(...me.start).lt(x * s, x * s) } } me.update() } }) this.timeline.add(tl, this.totalTime) this.totalTime += c.L1.time } L2() { // 只跟左右有关,只判断left let me = this let c = me.config let tl = new TimelineMax() let scale = { s: 0 } tl.to(scale, c.L2.time, { s: 1, onUpdate() { let s = scale.s if (left) { me.g.c().s(c.lineColor).mt(...me.start).lt(...me.L1End).lt(me.L1End[0] - c.L2.long * s, me.L1End[1]) } else { me.g.c().s(c.lineColor).mt(...me.start).lt(...me.L1End).lt(me.L1End[0] + c.L2.long * s, me.L1End[1]) } me.update() } }) this.timeline.add(tl, this.totalTime) this.totalTime += c.L2.time } addText() { // text框只与L2end有关,只需判断left即可,top不影响 let me = this let c = me.config let tl = new TimelineMax() let scale = { s: 0 }, L2End = [me.L1End[0] + c.L2.long, me.L1End[1]] if (left) { L2End = [me.L1End[0] - c.L2.long, me.L1End[1]] } tl.to(scale, c.text.time, { s: 1, onStart() { let x = 0, y = 0 if (left) { x = L2End[0] - c.text.width } else { x = L2End[0] } me.g.c().s(c.lineColor).mt(...me.start).lt(...me.L1End).lt(...L2End) me.text = new createjs.Text(c.text.text, c.text.font, c.text.color) me.text.alpha = 0 me.text.lineHeight = c.text.lineHeight me.text.x = x + c.text.padding[0] me.text.y = L2End[1] - c.text.height / 2 + c.text.padding[1] me.stage.addChild(me.text) me.textShape.graphics.c().f(c.text.backgroundColor).rr(x, L2End[1] - c.text.height / 2, c.text.width, c.text.height, 5) me.textShape.alpha = 0 me.update() }, onUpdate() { me.text.alpha = scale.s me.textShape.alpha = scale.s me.update() } }) this.timeline.add(tl, this.totalTime) } update() { this.stage.update() } } let EC = echarts.getInstanceByDom(document.getElementById("chart-panel")) var index = 0 // setInterval(_ => { // EC.dispatchAction({ // type: 'showTip', // seriesIndex: 0, // dataIndex: index // }) // index++ // if (index >= data.length) { // index = 0 // } // }, 3000) window.addEventListener('resize', e => { let tCanvas = document.getElementById('tCanvas') if (tCanvas) { tCanvas.style.display = 'none' } })