-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.js
734 lines (654 loc) · 28.8 KB
/
index.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
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
import L from 'leaflet';
import 'leaflet-hash';
import 'leaflet/dist/leaflet.css';
import yaml from 'js-yaml';
import FileSaver from 'file-saver';
import AppUI from './AppUI.svelte';
import { displayOptions } from './displayOptions';
import { calcFeaturePropertyStats } from './stats';
import { stringifyWithFunctions } from './utils';
import { isProjectable } from './basemaps';
let query;
let layer, scene;
let map, hash, tooltip, popup;
// grab query parameters from the url and assign them to globals
query = new URLSearchParams(document.location.search);
var url_hash = window.location.hash.slice(1, window.location.hash.length).split('/');
var mapStartLocation = null
if (url_hash.length == 3) {
mapStartLocation = {
lat: Number(url_hash[1]),
lng: Number(url_hash[2]),
zoom: Number(url_hash[0])
};
}
map = L.map('map', { boxZoom: false, zoomControl: false });
hash = new L.Hash(map);
tooltip = L.tooltip();
popup = L.popup({ autoPan: false, closeButton: true });
// Leaflet needs an initial location before the map is "ready", which will block Tangram layer loading
map.setView([37.7,-122.4], 2);
// Initialize App UI
const appUI = new AppUI({
target: document.getElementById('ui')
});
window.appUI = appUI; // debugging
// Handle UI events affecting Tangram scene
appUI.on('loadScene', state => {
loadScene(state);
});
appUI.on('updateScene', state => {
if (scene && scene.initialized) {
updateScene(state, scene.config);
scene.updateConfig();
}
});
appUI.on('exportScene', () => {
const state = appUI.get();
if (state.spaceInfo && scene && scene.initialized) {
const filename = `${state.spaceId} ${state.spaceInfo.title}.yaml`;
const yamlScene = exportScene('yaml');
FileSaver.saveAs(new Blob([yamlScene], { type: 'application/x-yaml' }), filename);
}
});
// Load info on a new XYZ space
appUI.on('loadSpace', ({ spaceId, token }) => {
getStats({ spaceId, token, mapStartLocation });
});
// Handle query string updates
appUI.on('updateQueryString', ({ queryParams }) => {
const query = new URLSearchParams(queryParams);
const qs = `?${query.toString()}${window.location.hash}`;
window.history.replaceState(null, null, qs);
});
// Initialize UI with query string params
appUI.setFromQueryParams(query);
// apply updates to scene based on current display options
function updateScene(uiState, scene_config) {
// configure data source for XYZ space
applySpace(uiState, scene_config);
// display options such as point size, toggling buildings or roads on/off, etc.
applyDisplayOptions(uiState, scene_config);
// update the tag filter on the XYZ tiles (if the tags have changed, this will cause new tiles to load)
applyTags(uiState, scene_config);
}
// load a new scene basemap (first creating the leaflet and tangram layers if needed)
function loadScene({ basemapScene, token }) {
// token is used for XYZ space and basemap tiles
// defaults to initial placeholder access token if needed, replaced after space has loaded
basemapScene.global.xyz_access_token = token || 'Qz2TvilK6PhGZSu9K-yGkA';
basemapScene.global.sdk_api_key = 'DpCrhQqsR2igQPEINRTfcw'; // default Nextzen API key for terrain tiles
if (layer == null) {
// if the Tangram layer doesn't exist yet, initialize it and load the scene for the first time
makeLayer(basemapScene);
}
else {
scene.load(basemapScene);
}
}
function exportScene(format = 'json') {
const uiState = appUI.get();
// First do a deep copy of the basemap, preserving functions
const scene_config = JSON.parse(stringifyWithFunctions(uiState.basemapScene));
// Then apply viz-specific scene state
updateScene(uiState, scene_config);
// Modify camera to default to current view
const activeCamera = scene.getActiveCamera(); // get current camera for loaded scene
const center = map.getCenter();
scene_config.cameras = scene_config.cameras || {};
scene_config.cameras[activeCamera] = {
position: [center.lng, center.lat, map.getZoom()]
};
// Then deep copy again to ensure any compiled functions (from above step) are preserved
// (feature color calculations, etc. are run-time defined functions)
const jsonScene = JSON.parse(stringifyWithFunctions(scene_config));
if (format === 'yaml') {
return yaml.safeDump(jsonScene);
}
return jsonScene;
}
// initialize Tangram leaflet layer, and load the scene for the first time
function makeLayer(scene_obj) {
// sync popup content from svelte UI component when it changes
appUI.on('updatePopup', () => {
popup.setContent(document.querySelector('#ui #popupContent'));
});
layer = Tangram.leafletLayer({
scene: scene_obj,
leaflet: L,
attribution: '<a href="https://github.com/tangrams/tangram" target="_blank">Tangram</a> | © OSM contributors | <a href="https://explore.xyz.here.com/">HERE XYZ</a>',
events: {
hover: ({ feature, leaflet_event: { latlng }, changed }) => {
// preview feature via hover, currently NOT synced to app UI
if (appUI.get().featurePinned) {
return;
}
if (feature && feature.source_name === '_xyzspace') {
appUI.set({ feature, featurePinned: false });
if (!popup.isOpen()) {
layer.openPopup(latlng);
}
else {
popup.setLatLng(latlng);
}
}
else {
layer.closePopup();
}
},
click: ({ feature, leaflet_event: { latlng }, changed }) => {
// select new feature, syncs to app UI
if (!appUI.get().featurePinned) {
if (feature && feature.source_name === '_xyzspace') {
if (!popup.isOpen()) {
layer.openPopup(latlng);
}
else {
popup.setLatLng(latlng);
}
appUI.set({ feature, featurePinned: true });
}
}
// de-select feature
else {
layer.closePopup();
appUI.set({ feature: null, featurePinned: false });
}
}
},
selectionRadius: 5
});
scene = layer.scene;
// setup tooltip for hover content
layer.bindTooltip(tooltip);
layer.bindPopup(popup);
// always clear pinned feature on close (e.g. maybe user manually closed with X button)
layer.on('popupclose', e => {
if (e.popup === popup) {
appUI.set({ feature: null, featurePinned: false });
}
});
map.on('zoom mouseout', () => {
if (!appUI.get().feature) {
layer.closePopup();
appUI.set({ feature: null, featurePinned: false });
}
}); // close tooltip when zooming
// setup Tangram event listeners
scene.subscribe({
load: function ({ config }) {
// when a new scene loads (e.g. when app loads, or a new basemap is selected),
// update with current data source and display options
updateScene(appUI.get(), config);
},
view_complete: function (e) {
// when new tiles finish loading, update viewport counts for tags and feature properties
console.log('view complete')
queryViewport();
}
});
layer.addTo(map);
// setup screenshot event
document.addEventListener('keydown', ({ key }) => {
if (key == "s") { // take screenshot
scene.screenshot().then(function (screenshot) {
FileSaver.saveAs(screenshot.blob, `invader-${(new URLSearchParams(appUI.get().queryParams))}.png`);
});
}
});
window.layer = layer; // debugging
window.scene = scene; // debugging
}
function applySpace({ spaceId, token, displayToggles: { hexbins, clustering, clusteringProp, quadRez, quadCountmode, voronoi, delaunay } = {}, propertySearchQueryParams, basemap, hexbinInfo, gisInfo, projection }, scene_config) {
if (spaceId && token) {
// choose main space, or hexbins space
var activeSpaceId
var toggles = appUI.get().displayToggles
// check to see if GIS spaces exist
if (voronoi == 1 && gisInfo.voronoi){
console.log('switching to voronoi space',gisInfo.voronoi)
// if (hexbins > 0){
toggles.hexbin = 0
console.log('sorry CLI hexbins, GIS wins')
// }
// if delaunay is already selected, turn it off and update ui
// if (delaunay == 1){
toggles.delaunay = 0
// toggles.voronoi = 1
// }
appUI.set({ displayToggles: toggles })
activeSpaceId = gisInfo.voronoi
}
else if (delaunay == 1 && gisInfo.delaunay){
console.log('switching to delaunay space',gisInfo.delaunay)
// if (hexbins > 0){
toggles.hexbin = 0
console.log('sorry CLI hexbins, GIS wins')
// }
// if voronoi is already selected, turn it off and update ui
// if (voronoi == 1){
toggles.voronoi = 0
// toggles.delaunay = 1
// }
appUI.set({ displayToggles: toggles })
// how would this work if we have edges? maybe tags?
activeSpaceId = gisInfo.delaunay
}
else { // enable hexbin space
activeSpaceId = (hexbins > 0 && hexbinInfo.spaceId != null) ? hexbinInfo.spaceId : spaceId;
}
const propertySearch = propertySearchQueryParams.map(v => v.join('=')).join('&');
// build property search query string params
// TODO: replace with native Tangram `url_params` when multiple-value support is available
scene_config.sources = scene_config.sources || {};
scene_config.sources._xyzspace = {
type: 'GeoJSON',
url: `https://xyz.api.here.com/hub/spaces/${activeSpaceId}/tile/web/{z}_{x}_{y}?${propertySearch}`,
url_params: {
access_token: token,
clip: true
}
};
if (isProjectable(basemap)) {
try {
scene.view.buffer = 2 // hack to modify the tangram view object directly, increasing the number of edge tiles loaded, which helps fill in gaps in the projection
// shoud we switch to 256px tiles? but do we then need to bump scene.view.buffer to 4?
} catch(e) {
console.error("Failed to set scene.view.buffer:\n", e)
}
// if (projection == ('globe' || 'albers') && (basemap == 'xyz-reduction-dark' || 'xyz-reduction-light')) {
if (projection == ('globe' || 'albers') ) { //&& (basemap != 'none')
if (basemap != 'none'){
// change land color to avoid global shader madness, raise lines above hexbins for better visibility
toggles.water = 1; // will this raise it? or just the display?
scene_config.layers.boundaries.country.draw.lines.order = 500;
scene_config.layers.boundaries.region.draw.lines.order = 500;
scene_config.layers.earth.draw.polygons.color = scene_config.global.water_color; // hide extruding ocean tiles by making land the same color, psyche
scene_config.layers.water['water-boundary-ocean'].draw.lines.order = 500;
}
// scene_config.sources._xyzspace.url_params.clip = false // hexbins split across tiles get different counts
map.setMinZoom(2) // hexbin data isn't available below 2 and it's pretty small anyway
map.setMaxZoom(7) // looks OK below this but we don't have roads enabled
}
//tune label collisions
if (projection == 'globe' && basemap != 'none'){
// label collisions get weird in this projection, but you can get more cities this way with acceptable overlap
scene_config.layers.places.draw['text-blend-order'].collide = false
}
if (projection == 'albers' && basemap != 'none'){
// label collisions get weird in this projection, but you can get more cities this way with acceptable overlap
scene_config.layers.places['populated-places'].draw["text-blend-order"].collide = false
scene_config.layers.places["populated-places"].filter = {kind: "locality", population: {min: 2300000}}
}
// change land color to water to minimize glitches
if (projection == 'albers' && basemap != 'none'){
map.setMinZoom(4) // weird artifacts below 5 when the map starts wrapping around
map.setMaxZoom(7) // stopping where region boundaries disappear
scene.view.buffer = 4 // we like Baffin Island
scene_config.scene.background.color = scene_config.global.water_color // avoid square holes in the arctic and antarctica
scene_config.sources._xyzspace.url_params.clip = true; // weeeiiird shit happens with albers if clip = false, rainbow lasers, Europe shows up off California
scene_config.layers.earth.draw.polygons.color = scene_config.global.earth_color; // in case we're coming from globe
// may want to figure out how to bump down hexbin ['clustering.resolution'] in albers (-1 or -2?)
}
// so what happens if someone switches to albers or molleweide to 'none' -- how to reset?
// else {
// scene_config.layers.boundaries.country.draw.lines.order = 'function() { return (feature.sort_rank -1); }'
// scene_config.layers.boundaries.region.draw.lines.order = global.feature_order;
// scene_config.layers.earth.draw.polygons.color = scene_config.global.earth_color;
// scene_config.layers.water['water-boundary-ocean'].draw.lines.order = global.feature_order
// }
}
if (clustering == 1) { // h3 hexbin clustering
scene_config.sources._xyzspace.url_params.clustering = 'hexbin';
if (projection == 'globe'){
scene_config.sources._xyzspace.url_params.clip = false;
// keeps hexbins from getting split across tiles and having different counts
// don't do this for albers
}
if (clusteringProp){
scene_config.sources._xyzspace.url_params['clustering.property'] = clusteringProp.replace(/[]"/,'')
}
// not sure why this doesn't work, doesn't like the water-boundary-ocean thing even when not called "TypeError: Cannot read property 'draw' of undefined"
// if (basemap == ('xyz-reduction-dark' || 'xyz-reduction-light')){ // not all basemaps have these? will need to change later when we project more of them
// try {
// scene_config.layers.boundaries.country.draw.lines.order = 500; // raise borders above hexbins
// scene_config.layers.boundaries.region.draw.lines.order = 500;
// scene_config.layers.water['water-boundary-ocean'].draw.lines.order = 500; // coastline too
// } catch(e) {
// console.error("Failed to raise borders:\n", e)
// }
// }
console.log('H3 hexbins')
} else if (clustering == 2) { // h3 hexbin centroids
scene_config.sources._xyzspace.url_params.clustering = 'hexbin';
scene_config.sources._xyzspace.url_params['clustering.pointmode'] = true;
if (clusteringProp){
scene_config.sources._xyzspace.url_params['clustering.property'] = clusteringProp.replace(/[]"/,'')
}
console.log('H3 hexbin centroids')
} else if (clustering == 3) { // quadbin clustering
scene_config.sources._xyzspace.url_params.clustering = 'quadbin';
// do we need clip = false?
if (clusteringProp){
scene_config.sources._xyzspace.url_params['clustering.property'] = clusteringProp.replace(/[]"/,'')
}
console.log('quadbins');
if (quadRez > 0){
scene_config.sources._xyzspace.url_params['clustering.resolution'] = quadRez;
console.log('quadbin resolution',quadRez);
}
if (quadCountmode){
scene_config.sources._xyzspace.url_params['clustering.countmode'] = quadCountmode;
console.log('quadbin countmode', quadCountmode)
}
}
else {
// clear out clustering params
delete scene_config.sources._xyzspace.url_params.clustering
delete scene_config.sources._xyzspace.url_params['clustering.resolution']
delete scene_config.sources._xyzspace.url_params['clustering.property']
delete scene_config.sources._xyzspace.url_params['clustering.countmode']
// turn tile clipping back on
scene_config.sources._xyzspace.url_params.clip = true;
}
// if we ever can increase h3 resolution (denser hexbins), can enable this
// const h3zoomRez = [2,2,2,2,3,4,4,5,6,6,7,8,9,9,10,11,11,12,13,14,14,15,15] // h3 hexbin resolution - map zoom lookup, 0-22
// const currentZoom = scene.view.tile_zoom;
// if (clusterRez == 0){
// delete scene_config.sources._xyzspace.url_params['clustering.resolution']
// }
// else if (clusterRez > 1){
// scene_config.sources._xyzspace.url_params['clustering.resolution'] = h3zoomRez[currentZoom] + clusterRez
// }
}
}
function applyDisplayOptions(uiState, scene_config) {
for (const option in displayOptions) {
const value = uiState.displayToggles[option];
if (value !== undefined && displayOptions[option].apply) {
displayOptions[option].apply(scene_config, value, uiState);
}
}
}
function applyTags({ spaceId, tagFilterQueryParam, hexbinInfo, displayToggles: { hexbins } = {} }, scene_config) {
// choose selected main space tags, or hexbin-specific tag
let activeTags = tagFilterQueryParam;
var currentZoom = scene.view.tile_zoom; // or map.getZoom() ?
if (hexbins === 1 & Object.keys(hexbinInfo).length > 0) { // ensure hexbins info exists
// drawing hexbins
var hexbinZoomArray = hexbinInfo.zoomLevels
var hexbinZoomMax = Math.max(...hexbinZoomArray)
var hexbinZoomMin = Math.min(...hexbinZoomArray)
// console.log(currentZoom,hexbinZoomMin,hexbinZoomMax,hexbinZoomArray)
if (hexbinZoomArray.includes(currentZoom.toString())){ // hexbins in zoom array are strings, not numbers. maybe better to just compare min and max but there might be zooms levels between that don't have hexbins
activeTags = 'zoom' + currentZoom + '_hexbin';
console.log('centroid tags',activeTags)
}
else if (currentZoom > hexbinZoomMax) {
// when you zoom in past hexbinZoomMax, maybe we want show the raw points? but showing hexbinZoomMax right now
// scene_config.sources._xyzspace.url = `https://xyz.api.here.com/hub/spaces/${spaceId}/tile/web/{z}_{x}_{y}`;
// activeTags = tagFilterQueryParam;
activeTags = 'zoom' + hexbinZoomMax + '_hexbin';
console.log(currentZoom + ">" + hexbinZoomMax);
}
else if (currentZoom < hexbinZoomMin) {
// what should we do when we zoom out beyond the hexbinZoomMin? imagine 10 million points. show hexbinZoomMin for now
// scene_config.sources._xyzspace.url = `https://xyz.api.here.com/hub/spaces/${spaceId}/tile/web/{z}_{x}_{y}`;
activeTags = 'zoom' + hexbinZoomMin + '_hexbin'; // if in hexbin mode and zoomed way out, show what we've got
console.log("beyond hexbin range, showing widest")
}
// activeTags = 'zoom13_hexbin';
}
else if (hexbins === 2 && Object.keys(hexbinInfo).length > 0) { // ensure hexbins info exists
// drawing centroids
var hexbinZoomArray = hexbinInfo.zoomLevels
var hexbinZoomMax = Math.max(...hexbinZoomArray)
var hexbinZoomMin = Math.min(...hexbinZoomArray)
console.log(currentZoom,hexbinZoomMin,hexbinZoomMax,hexbinZoomArray)
var overZoom = currentZoom + 1 //centroids fron one zoom level down look better
if (hexbinZoomArray.includes(overZoom.toString())){ // hexbins in zoom array are strings, not numbers. maybe better to just compare min and max but there might be zooms levels between that don't have hexbins
activeTags = 'zoom' + overZoom + '_centroid';
console.log('centroid tags',activeTags)
}
else if (overZoom > hexbinZoomMax) {
// when you zoom in past hexbinZoomMax, switch from centroids to raw points, need to switch back to original space (is this the best way?)
scene_config.sources._xyzspace.url = `https://xyz.api.here.com/hub/spaces/${spaceId}/tile/web/{z}_{x}_{y}`;
activeTags = tagFilterQueryParam;
console.log(overZoom,">",hexbinZoomMax);
}
else if (overZoom < hexbinZoomMin) {
// what should we do when we zoom out beyond the hexbinZoomMin? imagine 10 million points. show hexbinZoomMin for now
// scene_config.sources._xyzspace.url = `https://xyz.api.here.com/hub/spaces/${spaceId}/tile/web/{z}_{x}_{y}`;
activeTags = 'zoom' + hexbinZoomMin + '_centroid'; // if in hexbin mode and zoomed way out, show what we've got
console.log("beyond hexbin range, showing widest")
}
// activeTags = 'zoom13_centroid';
}
scene_config.sources._xyzspace = scene_config.sources._xyzspace || {};
scene_config.sources._xyzspace.url_params = {
...scene_config.sources._xyzspace.url_params,
tags: activeTags
};
// remove tags param if no tags - do this after adding above, to ensure the full object path exists
if (!activeTags) {
delete scene_config.sources._xyzspace.url_params.tags;
}
}
async function getStats({ spaceId, token, mapStartLocation }) {
// Get stats endpoint
var url = `https://xyz.api.here.com/hub/spaces/${spaceId}/statistics?access_token=${token}`;
const stats = await fetch(url).then(r => r.json());
// console.log(stats)
if (stats.type == 'ErrorResponse'){
console.log(stats.errorMessage);
var error_response = stats.errorMessage;
if (stats.errorMessage == "Unauthorized"){
error_response = "Alas, " + token + " is not a valid XYZ token"
alert(error_response);
return
}
if (stats.errorMessage == "The space with this ID does not exist."){
error_response = "The space " + spaceId + " you seek\n Cannot be located, but\n Countless more exist"
alert(error_response);
return
}
if (stats.error == 'BadGateway'){
stats.properties = {}
stats.properties.value = []
stats.tags = {}
stats.tags.value = []
error_response = "Statistics for " + spaceId + " not responding: map, properties and features enabled; bbox, count, size, tags currently unavailable"
alert(error_response);
console.log(error_response, stats.error)
}
}
var bbox = (stats.bbox) ? stats.bbox.value : [-45, -45, 45, 45]
console.log('map start location:', mapStartLocation)
console.log('bbox',bbox)
// check for all zero bbox
if ((bbox[0] == 0) && (bbox[1] == 0) && (bbox[2] == 0) && (bbox[3] == 0)) {
console.log('zeros')
bbox = [-45, -45, 45, 45]
}
let fitBounds = false;
if (mapStartLocation) {
// if there is a map hashtag and it is outside the bbox, recenter, but if it's inside, keep that view
if (mapStartLocation.lat < bbox[1] || mapStartLocation.lat > bbox[3] ||
mapStartLocation.lng < bbox[0] || mapStartLocation.lng > bbox[2]) {
console.log('map start location outside bbox');
fitBounds = true;
}
else {
map.setView([mapStartLocation.lat, mapStartLocation.lng], mapStartLocation.zoom);
}
}
if (fitBounds) {
const sw = L.latLng(bbox[1], bbox[0]);
const ne = L.latLng(bbox[3], bbox[2]);
const bounds = L.latLngBounds(sw, ne);
map.fitBounds(bounds);
}
var spaceSize = (stats.byteSize) ? stats.byteSize.value : 0
var spaceCount = (stats.count) ? stats.count.value : 0
var calcSize = (spaceSize/1024/1024)
console.log(spaceSize,'KB',calcSize,featureSize)
if (calcSize < 1000) {
calcSize = calcSize.toFixed(1) + ' MB'
}
else {
calcSize = (spaceSize/1024/1024/1024).toFixed(1) + ' GB'
}
if (spaceSize > 0){
var featureSize = spaceSize/spaceCount/1024 // KB per feature
featureSize = featureSize.toFixed(1) + ' KB/feature'
} else {
calcSize = "n/a"
featureSize = "n/a"
}
// Get property info
const properties =
((stats.properties && stats.properties.value) || [])
.reduce((props, p) => {
props[p.key] = p;
return props;
}, {});
// Get space endpoint
var spaceURL = `https://xyz.api.here.com/hub/spaces/${spaceId}?access_token=${token}`;
const spaceInfo = await fetch(spaceURL).then((response) => response.json());
console.log(spaceInfo)
var tokenURL = `https://xyz.api.here.com/token-api/tokens/${token}`;
const tokenInfo = await fetch(tokenURL).then((response) => response.json());
var tokenCapabilities = {"hexbinClustering": false, "quadClustering": false}
tokenCapabilities =
(tokenInfo.urm['xyz-hub'].useCapabilities || [])
.reduce((props, p) => {
props[p.id] = true;
return props;
}, {});
console.log("token has", tokenCapabilities);
// updated document title
document.title = document.title + " / " + spaceId + " / " + spaceInfo.title
// check for hexbins, if they exist, create a hexbin object
var hexbinInfo = {};
if (spaceInfo.client) {
if (spaceInfo.client.hexbinSpaceId) {
hexbinInfo.spaceId = spaceInfo.client.hexbinSpaceId;
const hexbinSpaceURL = `https://xyz.api.here.com/hub/spaces/${hexbinInfo.spaceId}?access_token=${token}`;
console.log(hexbinSpaceURL)
try {
const hexbinSpaceInfo = await fetch(hexbinSpaceURL).then((response) => response.json());
hexbinInfo.zoomLevels = hexbinSpaceInfo.client.zoomLevels;
hexbinInfo.cellSizes = hexbinSpaceInfo.client.cellSizes;
} catch (e) { } // in case hexbin space doesn't exist or fails to load
}
}
var gisInfo = {}
if (spaceInfo.client) {
if (spaceInfo.client.voronoiSpaceId){
gisInfo.voronoi = spaceInfo.client.voronoiSpaceId
}
if (spaceInfo.client.tinSpaceId){
gisInfo.delaunay = spaceInfo.client.tinSpaceId
// will need to add triangles, edges, neighbors when we get it via the CLI
}
console.log('gis:',gisInfo);
}
// calculate time since data was last written to the space
let timeUnitsElapsed;
if (spaceInfo.contentUpdatedAt) {
const d = new Date();
const timeNow = d.getTime();
const contentUpdatedAt = new Date(spaceInfo.contentUpdatedAt);
const secondsElapsed = (timeNow - contentUpdatedAt) / 1000;
const minutesElapsed = Math.round(secondsElapsed / 60)
const hoursElapsed = Math.round(secondsElapsed / 60 / 60)
const daysElapsed = Math.round(secondsElapsed / 60 / 60 / 24)
const weeksElapsed = Math.round(secondsElapsed / 60 / 60 / 24 / 7)
const monthsElapsed = Math.round(secondsElapsed / 60 / 60 / 24 / 30)
const yearsElapsed = (daysElapsed / 365).toFixed(1)
const timeUnitsPrefix = "space last updated ";
if (yearsElapsed > 1){
timeUnitsElapsed = timeUnitsPrefix + yearsElapsed + " years ago"
} else if (monthsElapsed > 1) {
timeUnitsElapsed = timeUnitsPrefix + monthsElapsed + " months ago"
} else if (weeksElapsed > 1) {
timeUnitsElapsed = timeUnitsPrefix + weeksElapsed + " weeks ago"
} else if (daysElapsed > 1) {
timeUnitsElapsed = timeUnitsPrefix + daysElapsed + " days ago"
} else if (hoursElapsed > 1) {
timeUnitsElapsed = timeUnitsPrefix + hoursElapsed + " hours ago"
} else if (minutesElapsed > 1) {
timeUnitsElapsed = timeUnitsPrefix + minutesElapsed + " minutes ago"
} else {
timeUnitsElapsed = timeUnitsPrefix + Math.round(secondsElapsed) + " seconds ago"
}
};
// update UI
appUI.set({
spaceInfo: {
title: spaceInfo.title,
description: spaceInfo.description,
numFeatures: spaceCount,
properties,
dataSize: calcSize,
featureSize: featureSize,
updatedAt: timeUnitsElapsed
},
hexbinInfo,
tokenCapabilities,
gisInfo,
// seed with top tags from stats endpoint
uniqueTagsSeen: new Set([...appUI.get().uniqueTagsSeen, ...stats.tags.value.map(t => t.key)].filter(x => x))
});
}
// query Tangram viewport tiles, and update UI data (tag and property counts, etc.)
async function queryViewport() {
const features = await scene.queryFeatures({ filter: { $source: '_xyzspace' }});
console.log("features in viewport:", features.length);
appUI.set({ featuresInViewport: features });
updateViewportProperties(features);
}
function updateViewportTags(features) { // for tags
// grab the tags from Tangram's viewport tiles
let tagsViewport = [];
features.forEach(x => {
if (x.properties['@ns:com:here:xyz']){ // check to see if there are xyz tags
tagsViewport.push(...x.properties['@ns:com:here:xyz'].tags)
}
})
const tagsWithCountsInViewport =
Object.entries(
features
.flatMap(f => {
if (f.properties['@ns:com:here:xyz']){ // check to see if there are xyz tags
f.properties['@ns:com:here:xyz'].tags
}
})
.reduce((tagCounts, tag) => {
tagCounts[tag] = tagCounts[tag] ? tagCounts[tag] + 1 : 1;
return tagCounts;
}, {}))
.sort((a, b) => b[1] > a[1] ? 1 : (b[1] > a[1] ? -1 : 0));
appUI.set({
numFeaturesInViewport: features.length,
tagsWithCountsInViewport
});
}
function updateViewportProperties(features) { // for feature prop
// then get feature values based on currently selected property
const { featureProp } = appUI.get();
const stats = calcFeaturePropertyStats(features, featureProp);
// update UI
appUI.set({
featurePropCount: stats.uniqueCount,
featurePropValueCounts: stats.sortedValueCounts,
featurePropMin: stats.min,
featurePropMax: stats.max,
featurePropMedian: stats.median,
featurePropMean: stats.mean,
featurePropStdDev: stats.stdDev,
featurePropSigma: stats.sigmaPercent,
featurePropSigmaFloor: stats.sigmaFloor,
featurePropSigmaCeiling: stats.sigmaCeiling
});
}