-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
49 lines (47 loc) · 1.48 KB
/
config.js
File metadata and controls
49 lines (47 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
const config = {
style: "mapbox://styles/mapbox/light-v10",
accessToken: "pk.eyJ1IjoiZGFpbmlhbHBhZHJhaWciLCJhIjoiY2tmMDcyanUxMG9ndjJycGQwNGRpbG9heCJ9.auEu7fiKWtW9RSU_kFm4hw",
CSV: "data/lunch_locations.csv",
center: [-111.701, 34.190], //Lng, Lat
zoom: 6, //Default zoom
title: "Feed the Kids",
description: "Find locations near you where school-age children can receive free or reduced price lunches.",
sideBarInfo: ["Header", "Info 1", "Info 2"],
popupInfo: ["Popup Information"],
filters: [
{
type: "dropdown",
title: "Title of filter: ",
columnHeader: "Column Name",
listItems: [
'filter one',
'filter two',
'filter three',
'filter four',
'filter five',
'filter six',
'filter seven'
]
},
{
type: "checkbox",
title: "Title of filter: ",
columnHeader: "Column Name",
listItems: ["filter one", "filter two", "filter three"]
},
{
type: "dropdown",
title: "Title of filter: ",
columnHeader: "Column Name",
listItems: [
'filter one',
'filter two',
'filter three',
'filter four',
'filter five',
'filter six',
'filter seven'
]
}
]
};