-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
335 lines (264 loc) · 8.9 KB
/
script.js
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
require([
"esri/config",
"esri/Map",
"esri/views/MapView",
"esri/WebMap",
"esri/views/SceneView",
"esri/WebScene",
"esri/layers/ElevationLayer",
"esri/Graphic",
"esri/layers/FeatureLayer",
"esri/widgets/LayerList",
"esri/layers/TileLayer",
"esri/layers/ImageryLayer",
"esri/layers/VectorTileLayer",
"esri/widgets/Swipe",
"esri/widgets/Legend",
"esri/widgets/Expand",
"esri/widgets/BasemapToggle",
"esri/Basemap",
// "esri/layers/ArcGISImageServiceLayer",
"esri/geometry/Extent",
], (
esriConfig,
Map,
MapView,
WebMap,
SceneView,
WebScene,
ElevationLayer,
Graphic,
FeatureLayer,
LayerList,
TileLayer,
ImageryLayer,
VectorTileLayer,
Swipe,
Legend,
Expand,
BasemapToggle,
Basemap
// ArcGISImageServiceLayer
) => {
esriConfig.apiKey =
"AAPK5a4ef80094fe4b97adc491555c25fab7_B5IjF1tCDRw26KGoCLrauHItctUjCTgaL_4JQaCzu9ey2pcBEa4N1fgaiPhseVx";
// Custom UI
const switchButton = document.getElementById("switch-btn");
const switchMapButton = document.getElementById("switch-map-btn");
const switchData = document.getElementById("switch-data-menu");
// 2D Settings
const map1 = new Map({
basemap: "arcgis/topographic",
});
const imageLayer = new ImageryLayer({
title: "Terrain: Slope Map - © Esri_JP_Content - Airbus, USGS, NGA, NASA, CGIAR, GEBCO,N Robinson, NCEAS, NLS, OS, NMA, Geodatastyrelsen, GSA and the GIS User Community",
portalItem: {
id: "431f314cce9648b4a2da85a7359ccee4",
}
// url: "https://elevation.arcgis.com/arcgis/rest/services/WorldElevation/Terrain/ImageServer",
});
const imageLayer_2 = new ImageryLayer({
portalItem: {
id: "db38a951a2b643478a942ab22cd78fc6",
},
// opacity: 0.5
// db38a951a2b643478a942ab22cd78fc6
// e8f5557bfa4b4b5faa76e416c2721fb0
// url: "https://elevation2.arcgis.com/arcgis/rest/services/Polar/AntarcticDEM/ImageServer",
});
const layerArray = [
imageLayer,
imageLayer_2
]
const switchDataLayer = function(evt) {
let result = layerArray[0];
if (evt == "Data1") {
result = layerArray[0];
}
if (evt == "Data2") {
result = layerArray[1];
}
return result;
}
const webmap = new WebMap({
portalItem: {
id: "21812b28afea4091bc57472297aa73d4",
},
// Watercolour map
// f317168ea86a44f9a0577dda2bf68b2d
});
// Setting the default app configurations for switching between 2D & 3D
const appConfig = {
mapView: null,
sceneView: null,
activeView: null,
container: "viewDiv",
};
const initialViewParams = {
center: [-1.25, 60.255],
zoom: 8.5,
constraints: {
minScale: 8000,
maxScale: 2500000,
snapToZoom: false,
},
container: appConfig.container,
// -1.25, 60.255 Shetland coords
};
// 3D Settings
const scene = new WebScene({
portalItem: {
// autocasts as new PortalItem()
id: "625455b01ad843ecbdd8ad8f5f71acfc", // ID of the WebScene on arcgis.com
},
});
const elevLyr = new ElevationLayer({
portalItem: {
id: "7029fb60158543ad845c7e1527af11e4",
},
});
// create 2D view and set to active
appConfig.mapView = createView(initialViewParams, "2d");
appConfig.mapView.map = map1;
appConfig.activeView = appConfig.mapView;
// create 3D view, won't initialize until selected
initialViewParams.container = null;
initialViewParams.map = scene;
appConfig.sceneView = createView(initialViewParams, "3d");
// Switches the view from 2D to 3D each time the button is clicked
switchButton.addEventListener("click", () => {
switchView();
});
// Switches the view from 2D to 3D and vice versa
function switchView() {
const is3D = appConfig.activeView.type === "3d";
const activeViewpoint = appConfig.activeView.viewpoint.clone();
// remove the reference to the container for the previous view
appConfig.activeView.container = null;
if (is3D) {
// if the input view is a SceneView, set the viewpoint on the mapView instance. Set the container
// on the mapView and flag it as the active view
appConfig.mapView.viewpoint = activeViewpoint;
appConfig.mapView.container = appConfig.container;
appConfig.activeView = appConfig.mapView;
switchButton.value = "3D";
} else {
appConfig.sceneView.viewpoint = activeViewpoint;
appConfig.sceneView.container = appConfig.container;
appConfig.activeView = appConfig.sceneView;
switchButton.value = "2D";
}
}
// ---------------- Switch Data Event Listener
switchData.addEventListener("change", async (evt) => {
const selectedValue = evt.target.value
const result = await switchDataLayer(selectedValue);
updateMapBasedOnSelectedData(result);
});
function updateMapBasedOnSelectedData(layer) {
map1.removeAll(); // Clear existing layers
map1.addMany([layer]); // Add selected layer to the map
}
// ----------------
function createView(params, type) {
let view;
if (type === "2d") {
// Render 2D Map
view = new MapView(params);
Promise.all([switchDataLayer()]) // set to result of function switchData()
.then(() => {
if(map1){
map1.addMany([switchDataLayer()]);
}
const swipe = new Swipe({
leadingLayers: [],
trailingLayers: [switchDataLayer()], // function to switch between layers
position: 85,
view: view,
});
const legend = new Legend({
view: view,
});
const legendExpand = new Expand({
expandIcon: "information",
view: view,
content: legend,
});
const basemapToggle = new BasemapToggle({
view: view,
nextBasemap: "streets-relief-vector"
})
view.ui.add([swipe]);
view.ui.add(basemapToggle, 'bottom-left');
view.ui.add(legendExpand, 'bottom-right');
})
.catch((error) => console.error(error));
return view;
} else {
// Render 3D Scene
view = new SceneView(params);
const legend = new Legend({
view: view,
});
const legendExpand = new Expand({
expandIcon: "information",
view: view,
content: legend,
});
view.ui.add(legendExpand, "bottom-right");
// appConfig.mapView.map.ground.layers.add(elevLyr);
}
return view;
}
// ----------------------------
switchMapButton.addEventListener("click", () => {
switchMap();
});
function switchMap() {
const isWebMap = appConfig.mapView.map === webmap;
if (isWebMap) {
switchMapButton.value = "w/c";
// map1.removeAll();
Promise.all([switchDataLayer()])
.then(() => {
appConfig.mapView.map = map1;
map1.addMany([switchDataLayer()]);
// Additional code to configure layers, widgets, etc. for the web map
})
.catch((error) => console.error(error));
} else {
switchMapButton.value = "Map"
// Remove web map layers
webmap.removeAll();
// Add 2D map layers
Promise.all([switchDataLayer()]) // Load any required layers
.then(() => {
appConfig.mapView.map = webmap;
webmap.addMany([switchDataLayer()]);
// Additional code to configure layers, widgets, etc. for the 2D map
})
.catch((error) => console.error(error));
// Set the map of the 2D view to map1
appConfig.mapView.map = map1;
}
}
});
// Animated raster data flow
// https://www.esri.com/arcgis-blog/products/js-api-arcgis/mapping/create-an-animated-flow-visualization-with-the-arcgis-api-for-javascript/
//
// https://spatialreserves.wordpress.com/
// https://spatialreserves.wordpress.com/2019/02/18/the-top-10-most-useful-geospatial-data-portals-revisited/
// https://github.com/orgs/community/discussions/57070
// https://sentry.io/answers/undo-the-most-recent-local-git-commits/#:~:text=The%20Solution,commits%20without%20losing%20any%20work.
// https://developers.arcgis.com/javascript/latest/tutorials/add-a-point-line-and-polygon/
// https://portal.opentopography.org/dataspace/dataset?opentopoID=OTDS.112021.4326.3
// https://portal.opentopography.org/datasetMetadata?otCollectionID=OT.112018.3413.1
// https://codepen.io/pen?editors=1010
// https://developers.arcgis.com/javascript/latest/sample-code/widgets-swipe/
// https://www.arcgis.com/home/item.html?id=e8d799074d4d4b04b4f54577bd057758
//https://developers.arcgis.com/javascript/latest/proxies/
// https://doc.arcgis.com/en/arcgis-online/manage-data/publish-tiles.htm
// publish a tile service of the raster data in order to be able to bring it into the map as a feature layer using an id reference?
//https://portal.opentopography.org/arcticDem?opentopoID=OTSDEM.112018.3413.3
// https://maps.gov.scot/server/rest/services/ScotGov/HealthSocialCare/MapServer/0
// code snippets: https://carbon.now.sh