From a7156dd36287d953953423f2c5f7262032dc494e Mon Sep 17 00:00:00 2001 From: Denis Date: Tue, 18 Nov 2014 11:57:54 +0200 Subject: [PATCH] Added search radius 150 --- OsmAnd/src/net/osmand/plus/helpers/WaypointHelper.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OsmAnd/src/net/osmand/plus/helpers/WaypointHelper.java b/OsmAnd/src/net/osmand/plus/helpers/WaypointHelper.java index b55c1a07e5..1bafa0240f 100644 --- a/OsmAnd/src/net/osmand/plus/helpers/WaypointHelper.java +++ b/OsmAnd/src/net/osmand/plus/helpers/WaypointHelper.java @@ -57,7 +57,7 @@ public class WaypointHelper { public static final int FAVORITES = 3; public static final int ALARMS = 4; public static final int MAX = 5; - public static final int[] SEARCH_RADIUS_VALUES = {50, 100, 250, 500, 1000, 1500}; + public static final int[] SEARCH_RADIUS_VALUES = {50, 100, 150, 250, 500, 1000, 1500}; private List> locationPoints = new ArrayList>(); private ConcurrentHashMap locationPointsStates = new ConcurrentHashMap();