Set geofence radius to 150 meters

pull/281/head
Alex Baker 11 years ago
parent f081c83b8b
commit b975dae84c

@ -95,7 +95,7 @@ public class LocationPickerDialog extends InjectingDialogFragment {
if (places.getStatus().isSuccess()) { if (places.getStatus().isSuccess()) {
final Place place = places.get(0); final Place place = places.get(0);
LatLng latLng = place.getLatLng(); LatLng latLng = place.getLatLng();
Geofence geofence = new Geofence(place.getName().toString(), latLng.latitude, latLng.longitude, 50); Geofence geofence = new Geofence(place.getName().toString(), latLng.latitude, latLng.longitude, 150);
log.info("Picked {}", geofence); log.info("Picked {}", geofence);
onLocationPickedHandler.onLocationPicked(geofence); onLocationPickedHandler.onLocationPicked(geofence);
dismiss(); dismiss();

Loading…
Cancel
Save