-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex.ts
More file actions
53 lines (43 loc) · 1.34 KB
/
index.ts
File metadata and controls
53 lines (43 loc) · 1.34 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
/**
* @license
* Copyright 2019 Google LLC. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
// [START maps_layer_data_quakes_red]
let innerMap;
async function initMap() {
(await google.maps.importLibrary("maps")) as google.maps.MapsLibrary;
const mapElement = document.querySelector(
"gmp-map"
) as google.maps.MapElement;
innerMap = mapElement.innerMap;
// Get the earthquake data (JSONP format)
// This feed is a copy from the USGS feed, you can find the originals here:
// http://earthquake.usgs.gov/earthquakes/feed/v1.0/geojson.php
const script = document.createElement("script");
script.setAttribute(
"src",
"quakes.geo.json"
);
document.getElementsByTagName("head")[0].appendChild(script);
// Add a basic style.
innerMap.data.setStyle((feature) => {
const mag = Math.exp(parseFloat(feature.getProperty("mag") as string)) * 0.1;
return /** @type {google.maps.Data.StyleOptions} */ {
icon: {
path: google.maps.SymbolPath.CIRCLE,
scale: mag,
fillColor: "#f00",
fillOpacity: 0.35,
strokeWeight: 0,
},
};
});
}
// Defines the callback function referenced in the jsonp file.
function eqfeed_callback(data: any) {
innerMap.data.addGeoJson(data);
}
window.eqfeed_callback = eqfeed_callback;
initMap();
// [END maps_layer_data_quakes_red]