diff --git a/core/core-frontend/src/views/chart/components/js/panel/charts/map/map.ts b/core/core-frontend/src/views/chart/components/js/panel/charts/map/map.ts index 55e1e929ee..147f70909a 100644 --- a/core/core-frontend/src/views/chart/components/js/panel/charts/map/map.ts +++ b/core/core-frontend/src/views/chart/components/js/panel/charts/map/map.ts @@ -157,6 +157,11 @@ export class Map extends L7PlotChartView { }) }) data = filterChartDataByRange(sourceData, maxValue, minValue) + if (chart.drill) { + getMaxAndMinValueByData(sourceData, 'value', 0, 0, (max, min) => { + data = filterChartDataByRange(sourceData, max, min) + }) + } } else { data = sourceData }