-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathindex.js
More file actions
163 lines (163 loc) · 7.17 KB
/
Copy pathindex.js
File metadata and controls
163 lines (163 loc) · 7.17 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
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
/*
* @license
* Copyright 2025 Google LLC. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
// Import necessary loader
import { KMLLoader } from '@loaders.gl/kml';
// Initialize and add the map
let map;
let geojsonLayer;
let googleMapsOverlay;
async function initMap() {
// Progress bar logic moved from index.html
var progress, progressDiv = document.querySelector(".mdc-linear-progress");
if (progressDiv) {
// Assuming 'mdc' is globally available, potentially loaded via a script tag
// If not, you might need to import it or add type definitions.
// @ts-ignore
progress = new mdc.linearProgress.MDCLinearProgress(progressDiv);
progress.open();
progress.determinate = false;
progress.done = function () {
progress.close();
progressDiv?.remove(); // Use optional chaining in case progressDiv is null
};
}
// The location for the map center (adjust as needed for the KML data)
const position = { lat: 19.223718899391237, lng: -148.62590882823457 };
// Request needed libraries.
const { Map } = await google.maps.importLibrary('maps');
const mapDiv = document.getElementById('map');
if (!mapDiv) {
console.error('Map element not found!');
return;
}
// The map, centered at the specified position
map = new Map(mapDiv, {
zoom: 3, // Adjust zoom as needed
center: position,
// mapId: '6a17c323f461e521', // Replace with your Map ID
mapId: '6a17c323f461e521',
mapTypeId: 'satellite',
zoomControl: true,
clickableIcons: false, // Disable clicks on base map POIs
});
// Deck.gl Layer and Overlay
geojsonLayer = new deck.GeoJsonLayer({
id: 'geojson-layer',
data: `https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/1.0_week_age.kml?t=${Date.now()}`, // Append timestamp to prevent caching
loaders: [KMLLoader],
pickable: true,
stroked: true, // Set to true to add a border
getLineColor: [0, 0, 0, 255], // Set border color to black
getLineWidth: 2, // Set border width
filled: true, // Set to true to render filled circles
pointType: 'circle', // Render points as circles
// extruded: false, // Keep as false for 2D circles
// lineWidthScale: 14, // Not needed for points
// lineWidthMinPixels: 4, // Not needed for points
pointRadiusMinPixels: 2,
pointRadiusMaxPixels: 200,
getRadius: (f) => 8000,
getFillColor: (f, { index }) => {
// Extract magnitude from the description string
const description = f.properties.description;
const magnitudeMatch = description.match(/M (\d+\.?\d*)/);
let parsedMagnitude = null;
if (magnitudeMatch && magnitudeMatch[1]) {
parsedMagnitude = parseFloat(magnitudeMatch[1]);
}
else {
console.log('Magnitude not found');
}
// Define color range (Lighter Red to #FF0000) - Increased contrast
const minColor = [255, 255, 0]; // Yellow
const maxColor = [255, 0, 0]; // #FF0000
const minMag = 1;
const maxMag = 7;
// Use parsed magnitude for color calculation
const magnitudeForColor = parsedMagnitude !== null ? parsedMagnitude : minMag;
// Normalize magnitude
const normalizedMagnitude = Math.max(0, Math.min(1, (magnitudeForColor - minMag) / (maxMag - minMag)));
// Interpolate colors
const r = minColor[0] + normalizedMagnitude * (maxColor[0] - minColor[0]);
const g = minColor[1] + normalizedMagnitude * (maxColor[1] - minColor[1]);
const b = minColor[2] + normalizedMagnitude * (maxColor[2] - minColor[2]);
const interpolatedColor = [Math.round(r), Math.round(g), Math.round(b), 200];
return interpolatedColor; // Color scale based on magnitude, fixed alpha
},
autoHighlight: true,
transitions: {
getRadius: {
type: "spring",
stiffness: 0.1,
damping: 0.15,
enter: () => [0], // grow from size 0,
duration: 10000,
},
},
// Optional: Add onHover or onClick handlers for interactivity
onHover: ({ object, x, y }) => {
const tooltip = document.getElementById('tooltip'); // Assuming a tooltip element exists
if (tooltip && object) {
let tooltipContent = `Earthquakes 1.0_week_age`;
tooltipContent += `<p> ${object.properties.description}</p>`;
tooltip.innerHTML = tooltipContent;
tooltip.style.left = x + 'px';
tooltip.style.top = y + 'px';
tooltip.style.display = 'block';
}
else if (tooltip) {
tooltip.style.display = 'none';
}
},
onDataLoad: () => {
console.log('KML data loaded');
if (progress && progress.done) {
progress.done();
}
}
});
googleMapsOverlay = new deck.GoogleMapsOverlay({
layers: [geojsonLayer],
// Disable depth testing to avoid rendering issues with the base map
parameters: {
depthTest: false
}
});
googleMapsOverlay.setMap(map);
// Generate Legend
const legendContainer = document.getElementById('legend');
if (legendContainer) {
const magnitudeValues = [1, 2, 3, 4, 5, 6, 7]; // Representative magnitudes
const minMag = 1;
const maxMag = 7;
const minColor = [255, 255, 0]; // Yellow (should match getFillColor)
const maxColor = [255, 0, 0]; // #FF0000 (should match getFillColor)
magnitudeValues.forEach(magnitude => {
// Calculate color for the magnitude (using the same interpolation logic)
const normalizedMagnitude = Math.max(0, Math.min(1, (magnitude - minMag) / (maxMag - minMag)));
const r = minColor[0] + normalizedMagnitude * (maxColor[0] - minColor[0]);
const g = minColor[1] + normalizedMagnitude * (maxColor[1] - minColor[1]);
const b = minColor[2] + normalizedMagnitude * (maxColor[2] - minColor[2]);
const color = `rgb(${Math.round(r)}, ${Math.round(g)}, ${Math.round(b)})`;
// Create legend item element
const legendItem = document.createElement('div');
legendItem.classList.add('legend-item');
// Create color swatch
const colorSwatch = document.createElement('div');
colorSwatch.classList.add('legend-color');
colorSwatch.style.backgroundColor = color;
// Create label
const label = document.createElement('span');
label.textContent = `${magnitude}`; // Adjust label format as needed
// Append color swatch and label to legend item
legendItem.appendChild(colorSwatch);
legendItem.appendChild(label);
// Append legend item to legend container
legendContainer.appendChild(legendItem);
});
}
}
initMap();