39 lines
1015 B
JavaScript
39 lines
1015 B
JavaScript
import React from "react"
|
|
import { Platform } from "react-native"
|
|
|
|
export const config = {
|
|
localIPAddr: "192.168.1.175",
|
|
//localIPAddr: "192.168.1.14",
|
|
viroAPIKey: "06F37B6A-74DA-4A83-965A-7DE2209A5C46",
|
|
googleGeocodeAPIKey: "AIzaSyCs4JVT6gysnY5dAJ7KjVJYeykLv_xz1GI",
|
|
googleGeocodeURL: "https://maps.googleapis.com/maps/api/geocode/json",
|
|
refererURL: "https://dar.kss.us.com",
|
|
minDistanceToItem: 20,
|
|
workItemRegionDelta: 0.005,
|
|
activityRegionDelta: 0.005,
|
|
homeRegionInset: 0.02,
|
|
homeRegionDelta: 0.005,
|
|
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,
|
|
}
|