We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e5e5c9 commit b8c0ef6Copy full SHA for b8c0ef6
app/static/app/js/components/Map.jsx
@@ -33,7 +33,7 @@ import { _ } from '../classes/gettext';
33
import UnitSelector from './UnitSelector';
34
import { unitSystem, toMetric } from '../classes/Units';
35
36
-const IOU_THRESHOLD = 0.3;
+const IOU_THRESHOLD = 0.7;
37
38
class Map extends React.Component {
39
static defaultProps = {
@@ -928,7 +928,7 @@ _('Example:'),
928
929
if (stored){
930
// Only show annotations for top-most tasks
931
- if (this.ious[task.id] >= IOU_THRESHOLD){
+ if (this.ious[task.id] >= 0.01){
932
PluginsAPI.Map.toggleAnnotation(layer, false);
933
}
934
0 commit comments