feat: loading和部分nodata处理;地图功能

This commit is contained in:
chenjinsong
2022-08-21 22:11:53 +08:00
parent c4cf810011
commit ab19220e0d
17 changed files with 257 additions and 162 deletions

View File

@@ -149,6 +149,12 @@ export function valueToRangeValue (value, unitType) {
}
break
}
case unitTypes.bps: {
if (values[0] < 0.01) {
return ['<0.01', 'bps']
}
break
}
default: break
}
}