map-chart.js 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. (function () {
  2. Vue.component('map-chart', {
  3. template: '<div class="chart_box" >\
  4. <div :id="chartid" class="chart_box"></div>\
  5. </div>',
  6. props: ['config'],
  7. data: function () {
  8. return {
  9. chartid: _.uniqueId("chart_"),
  10. chart: null,
  11. lastIndex:null
  12. }
  13. },
  14. mounted: function () {
  15. var that =this;
  16. this.$nextTick(function () {
  17. that.chart = echarts.init(document.getElementById(that.chartid));
  18. that.chart.setOption(defaults); //试着一下
  19. this.chart.on('click', function (params) {//点击事件
  20. that.$emit('clickMap',params) //传给外面点击事件
  21. if (params.componentType === 'series') {
  22. if(that.lastIndex !== null) {
  23. that.chart.dispatchAction({ //把上一个高亮的取消掉
  24. type: 'downplay',
  25. seriesIndex: 0,
  26. dataIndex: that.lastIndex
  27. })
  28. }
  29. that.$emit('map-click',params)
  30. that.lastIndex = params.dataIndex //高亮现在这个
  31. that.chart.dispatchAction({
  32. type: 'highlight',
  33. seriesIndex: 0,
  34. dataIndex: params.dataIndex
  35. })
  36. }
  37. })
  38. })
  39. },
  40. methods: {
  41. setOption: function (options) {
  42. if(!options)return
  43. var options = $.extend({}, defaults, options);
  44. return options
  45. }
  46. },
  47. watch: {
  48. config: function (data) {
  49. if (data) {
  50. this.chart.setOption(this.setOption(data));
  51. }
  52. }
  53. }
  54. })
  55. var defaults = {
  56. tooltip: {
  57. trigger: 'item',
  58. formatter: '{b}<br/>{c} (p / km2)'
  59. },
  60. visualMap: {
  61. min: 800,
  62. max: 50000,
  63. text:['High','Low'],
  64. realtime: false,
  65. calculable: true,
  66. inRange: {
  67. color: ['#c5ddff','#62a3ff', '#277eff', '#005adc', '#0146ad']
  68. }
  69. },
  70. series: [
  71. {
  72. type: 'map',
  73. mapType: '贵港', // 自定义扩展图表类型
  74. itemStyle:{
  75. normal:{
  76. label:{
  77. show:true,
  78. color: '#fff'
  79. },
  80. borderColor: '#fff',
  81. shadowColor: '#0355ab',
  82. shadowBlur: 10,
  83. shadowOffsetX: 10,
  84. shadowOffsetY: 10
  85. },
  86. emphasis:{
  87. label:{
  88. show:true,
  89. color: '#fff'
  90. }
  91. }
  92. },
  93. data:[
  94. {name: '港北区', value: 20057.34},
  95. {name: '港南区', value: 15477.48},
  96. {name: '桂平市', value: 31686.1},
  97. {name: '平南县', value: 6992.6},
  98. {name: '覃塘区', value: 44045.49}
  99. ],
  100. selectedMode: 'single'
  101. }
  102. ]
  103. }
  104. })()