diff --git a/frontend/src/views/chart/chart/chart.js b/frontend/src/views/chart/chart/chart.js index defbf79ff2..118cb83554 100644 --- a/frontend/src/views/chart/chart/chart.js +++ b/frontend/src/views/chart/chart/chart.js @@ -140,12 +140,12 @@ export const DEFAULT_SIZE = { hPosition: 'center', vPosition: 'center', mapPitch: 0, - mapLineType: 'line', + mapLineType: 'arc', mapLineWidth: 1, mapLineAnimate: true, - mapLineAnimateDuration: 4, - mapLineAnimateInterval: 0.5, - mapLineAnimateTrailLength: 0.1 + mapLineAnimateDuration: 3, + mapLineAnimateInterval: 1, + mapLineAnimateTrailLength: 1 } export const DEFAULT_SUSPENSION = { show: true diff --git a/frontend/src/views/chart/chart/map/map_antv.js b/frontend/src/views/chart/chart/map/map_antv.js index c597604fa9..db7afc8516 100644 --- a/frontend/src/views/chart/chart/map/map_antv.js +++ b/frontend/src/views/chart/chart/map/map_antv.js @@ -55,8 +55,8 @@ export function baseFlowMapOption(chartDom, chartId, chart, action) { .animate({ enable: size.mapLineAnimate, duration: size.mapLineAnimateDuration, - interval: size.mapLineAnimateInterval, - trailLength: size.mapLineAnimateTrailLength + interval: 1, + trailLength: 1 }) if (color.mapLineGradient) { lineLayer.style({ diff --git a/frontend/src/views/chart/components/shapeAttr/SizeSelectorAntV.vue b/frontend/src/views/chart/components/shapeAttr/SizeSelectorAntV.vue index cf9275d445..cf0a8ae0c9 100644 --- a/frontend/src/views/chart/components/shapeAttr/SizeSelectorAntV.vue +++ b/frontend/src/views/chart/components/shapeAttr/SizeSelectorAntV.vue @@ -1306,7 +1306,7 @@ /> @@ -1330,7 +1330,7 @@ /> @@ -1343,7 +1343,7 @@ /> @@ -1427,8 +1427,7 @@ export default { lineTypeOptions: [ { name: this.$t('chart.map_line_type_line'), value: 'line' }, { name: this.$t('chart.map_line_type_arc'), value: 'arc' }, - { name: this.$t('chart.map_line_type_arc_3d'), value: 'arc3d' }, - { name: this.$t('chart.map_line_type_great_circle'), value: 'greatcircle' } + { name: this.$t('chart.map_line_type_arc_3d'), value: 'arc3d' } ] } },