From 0374ac5d7625a4d2e163e7bfc334239299557fe2 Mon Sep 17 00:00:00 2001 From: efarooqui Date: Wed, 23 Sep 2020 10:25:18 -0700 Subject: [PATCH] Removed extraneous USE_SEARCH declarations --- docs/configuration.md | 1 - example.config.js | 1 - src/store/initial.js | 1 - 3 files changed, 3 deletions(-) diff --git a/docs/configuration.md b/docs/configuration.md index db6b268..303129c 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -19,7 +19,6 @@ The URLs for these endpoints, as well as other configurable settings in your tim | MAP_ANCHOR | Geographic coordinates for original map anchor | Array of numbers | No | | MAPBOX_TOKEN | Access token for Mapbox satellite imagery | String | No | | features.USE_ASSOCIATIONS | Enable / Disable filters | boolean | No | -| features.USE_SEARCH | Enable / Disable search | boolean | No | | features.USE_SITES | Enable / Disable sites | boolean | No | In this configuration file you'll need to add your Mapbox token (see [here for more info](https://www.mapbox.com/help/define-access-token/)). Additionally, you'll need to replace the required endpoints by functioning ones. Finally, you'll want to initialize your application set in `MAP_ANCHOR`, as a (lat, long) pair, which determines the specific location at which the application will center itself on start. diff --git a/example.config.js b/example.config.js index f257c79..a159c4c 100644 --- a/example.config.js +++ b/example.config.js @@ -26,7 +26,6 @@ module.exports = { USE_ASSOCIATIONS: true, USE_SOURCES: true, USE_COVER: true, - USE_SEARCH: false, USE_SITES: false, USE_SHAPES: false, GRAPH_NONLOCATED: false, diff --git a/src/store/initial.js b/src/store/initial.js index beb475b..1b9ab6d 100644 --- a/src/store/initial.js +++ b/src/store/initial.js @@ -134,7 +134,6 @@ const initial = { features: { USE_COVER: false, USE_ASSOCIATIONS: false, - USE_SEARCH: false, USE_SITES: false, USE_SOURCES: false, USE_SHAPES: false,