forked from aws-samples/amazon-location-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration.js
19 lines (16 loc) · 953 Bytes
/
configuration.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// This configuration file is a single place to provide any values to set up the app
export const IDENTITY_POOL_ID = "XX-XXXX-X:XXXXXXXX-XXXX-1234-abcd-1234567890ab"; // REQUIRED - Amazon Cognito Identity Pool ID
export const REGION = "XX-XXXX-X"; // REQUIRED - Amazon Cognito Region
// These are the different Amazon Location Service map styles that users can switch to display
export const MAPS = [
{
NAME: "XXXXXXXXXXX", // REQUIRED - Amazon Location Service Map resource name
STYLE: "XXXXXXXXXXX", // REQUIRED - String representing the style of map resource
LABEL: "XXXXXXXXXXX" // REQUIRED - Text to be displayed for the map in the layer control box
},
{
NAME: "XXXXXXXXXXX", // REQUIRED - Amazon Location Service Map resource name
STYLE: "XXXXXXXXXXX", // REQUIRED - String representing the style of map resource
LABEL: "XXXXXXXXXXX" // REQUIRED - Text to be displayed for the map in the layer control box
}
];