Removed extraneous USE_SEARCH declarations

This commit is contained in:
efarooqui
2020-09-23 10:25:18 -07:00
parent a089ea587b
commit 0374ac5d76
3 changed files with 0 additions and 3 deletions

View File

@@ -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.

View File

@@ -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,

View File

@@ -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,