diff --git a/app/static/app/js/components/Map.jsx b/app/static/app/js/components/Map.jsx index 45878a2c..af358a0f 100644 --- a/app/static/app/js/components/Map.jsx +++ b/app/static/app/js/components/Map.jsx @@ -33,7 +33,7 @@ import { _ } from '../classes/gettext'; import UnitSelector from './UnitSelector'; import { unitSystem, toMetric } from '../classes/Units'; -const IOU_THRESHOLD = 0.3; +const IOU_THRESHOLD = 0.7; class Map extends React.Component { static defaultProps = { @@ -928,7 +928,7 @@ _('Example:'), if (stored){ // Only show annotations for top-most tasks - if (this.ious[task.id] >= IOU_THRESHOLD){ + if (this.ious[task.id] >= 0.01){ PluginsAPI.Map.toggleAnnotation(layer, false); } }