mapAdweb.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. <template>
  2. <div>
  3. <v-chart :forceFit="true" :height="height" :padding="padding" :scale="scale">
  4. <v-tooltip :showTitle="false" />
  5. <v-view :data="geoData" :scale="scale">
  6. <v-polygon :position="view1Opts.position" :vStyle="view1Opts.style" :tooltip="view1Opts.tooltip" />
  7. </v-view>
  8. <v-view :data="data" :scale="aliases">
  9. <v-polygon :position="view2Opts.position" :opacity="view2Opts.opacity" :color="view2Opts.color" :animate="view2Opts.animate" :tooltip="view2Opts.tooltip" />
  10. </v-view>
  11. </v-chart>
  12. </div>
  13. </template>
  14. <script>
  15. // const DataSet = require('@antv/data-set');
  16. import worldGeo from '../../assets/data/worldGeo-zh.json'
  17. import * as DataSet from "tinymce";
  18. const scale = [{
  19. dataKey: 'longitude',
  20. sync: true,
  21. }, {
  22. dataKey: 'latitude',
  23. sync: true,
  24. }];
  25. const view1Opts = {
  26. quickType: 'polygon',
  27. position: 'longitude*latitude',
  28. style: {
  29. fill: '#fff',
  30. stroke: '#ccc',
  31. lineWidth: 1
  32. },
  33. tooltip: false,
  34. };
  35. const view2Opts = {
  36. quickType: 'polygon',
  37. position: 'longitude*latitude',
  38. opacity: 'num',
  39. color: ['num', [ '#1890FF', '#0A61D7' ]],
  40. tooltip: 'country*num',
  41. animate: {
  42. leave: {
  43. animation: 'fadeOut'
  44. }
  45. },
  46. };
  47. export default {
  48. name: 'MapAdweb',
  49. props: {
  50. dataSource: {
  51. type: Array,
  52. default: () => [
  53. {"country":"China","num":16},
  54. {"country":"United States","num":12},
  55. {"country":"Taiwan","num":6},
  56. {"country":"Hong Kong","num":3},
  57. {"country":"Mexico","num":3},
  58. {"country":"Germany","num":2},
  59. {"country":"Belgium","num":1},
  60. {"country":"Brazil","num":1},
  61. {"country":"Costa Rica","num":1},
  62. {"country":"France","num":1},
  63. {"country":"India","num":1},
  64. {"country":"Malaysia","num":1},
  65. {"country":"Pakistan","num":1},
  66. {"country":"Poland","num":1},
  67. {"country":"Spain","num":1},
  68. {"country":"Thailand","num":1},
  69. {"country":"Ukraine","num":1}
  70. ]
  71. },
  72. // 别名,需要的格式:[{dataKey:'name',alias:'姓名'}, {dataKey:'sex',alias:'性别'}]
  73. aliases:{
  74. type: Array,
  75. default: () => [{
  76. dataKey: 'country',
  77. alias: '国家',
  78. },{
  79. dataKey: 'num',
  80. alias: '访问数',
  81. }]
  82. },
  83. height: {
  84. type: Number,
  85. default: 400
  86. }
  87. },
  88. data() {
  89. return {
  90. data: [],
  91. padding: ['0', '0', '0', '0'],
  92. geoData: [],
  93. scale,
  94. view1Opts,
  95. view2Opts,
  96. };
  97. },
  98. mounted() {
  99. const worldMap = new DataSet.View().source(worldGeo, {
  100. type: 'GeoJSON',
  101. });
  102. const userDv = new DataSet.View().source(this.dataSource).transform({
  103. geoDataView: worldMap,
  104. field: 'country',
  105. type: 'geo.region',
  106. as: ['longitude', 'latitude'],
  107. }).transform({
  108. type: 'map',
  109. callback: (obj) => {
  110. return obj;
  111. }
  112. });
  113. this.$data.geoData = worldMap;
  114. this.$data.data = userDv;
  115. },
  116. };
  117. </script>