-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
78 lines (78 loc) · 1.64 KB
/
config.json
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"map": {
"baseLayers": [
{
"id": "S2",
"name": "Sentinel-2",
"config": {
"id": "wmts",
"url": "https://{s}.s2maps-tiles.eu/wmts/1.0.0/{Layer}/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpg",
"subdomains": ["a", "b", "c", "d", "e"],
"layer": "s2cloudless-2018_3857",
"style": "default",
"format": "image/jpeg",
"requestEncoding": "REST",
"matrixSet": "g",
"tileGrid": {
"maxZoom": 19
},
"srs": "EPSG:3857"
}
},
{
"id": "bing",
"name": "Bing",
"config": {
"id": "bing",
"imagerySet": "Aerial",
"key": "AmEV-s101vB0DGqgW8Y9rjCWBg3ZinPm_y-QM6RXHmds_mSiZDbYxeEFcugx10rr",
"maxZoom": 19
}
},
{
"id": "osm",
"name": "OpenStreetMap",
"config": {
"id": "osm"
}
}
],
"projections": [
{
"code": "EPSG:3857",
"name": "Mercator"
},
{
"code": "EPSG:4326",
"name": "Geographic"
}
],
"renderers": [
{
"id": "ol",
"name": "2D"
},
{
"id": "cesium",
"name": "3D",
"props": {
"allowFreeCameraRotation": false,
"sceneMode": "globe"
}
}
],
"initialOptions": {
"baseLayer": "S2",
"projection": "EPSG:3857",
"renderer": "cesium"
},
"initialState": {
"view": {
"viewport": {
"center": [12.5, 41.9],
"resolution": 6000
}
}
}
}
}