From 9ec1e689ebe5a93df6cec9ca9202e261997c2747 Mon Sep 17 00:00:00 2001 From: John Lyon-Smith Date: Tue, 29 May 2018 07:55:29 -0700 Subject: [PATCH] Production settings --- mobile/src/config.js | 40 ++++++++++++++++++++++------------------ 1 file changed, 22 insertions(+), 18 deletions(-) diff --git a/mobile/src/config.js b/mobile/src/config.js index f8cb86b..e9eef1f 100644 --- a/mobile/src/config.js +++ b/mobile/src/config.js @@ -9,26 +9,30 @@ export const config = { googleGeocodeURL: "https://maps.googleapis.com/maps/api/geocode/json", refererURL: "https://dar.kss.us.com", minDistanceToItem: 20, - geocodeDelayMilliseconds: 500, - defaultUser: "john@lyon-smith.org", - //defaultUser: "", - // This region is downtown Toronto - // initialRegion: { - // latitude: 43.653908, - // longitude: -79.384293, - // latitudeDelta: 0.0922, - // longitudeDelta: 0.0421, - // }, - // This region is Bainbridge Island - initialRegion: { - latitude: 47.629536, - longitude: -122.524162, - latitudeDelta: 0.0922, - longitudeDelta: 0.0421, - }, workItemRegionDelta: 0.005, activityRegionDelta: 0.005, homeRegionInset: 0.02, homeRegionDelta: 0.005, - alwaysShowWorkItemInAR: true, + geocodeDelayMilliseconds: 500, + + // defaultUser: "john@lyon-smith.org", + defaultUser: "", + + // This region is downtown Toronto + initialRegion: { + latitude: 43.653908, + longitude: -79.384293, + latitudeDelta: 0.0922, + longitudeDelta: 0.0421, + }, + + // This region is Bainbridge Island + // initialRegion: { + // latitude: 47.629536, + // longitude: -122.524162, + // latitudeDelta: 0.0922, + // longitudeDelta: 0.0421, + // }, + + // alwaysShowWorkItemInAR: true, }