-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (56 loc) · 2.58 KB
/
index.html
File metadata and controls
64 lines (56 loc) · 2.58 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
<!doctype html>
<!--
@license
Copyright 2025 Google LLC. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
-->
<html>
<head>
<title>deck.gl KMLLoader and Google Maps Platform</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Use Material Design Progress indicator -->
<link
href=/proxy/https/github.com/googlemaps-samples/js-api-samples/blob/febfbaaaadc77bed6e4ababab4e4116d29af9d9c/samples/deckgl-kml/"https://unpkg.com/material-components-web@6.0.0/dist/material-components-web.css"%3C/div>
rel="stylesheet"
/>
<script src=/proxy/https/github.com/googlemaps-samples/js-api-samples/blob/febfbaaaadc77bed6e4ababab4e4116d29af9d9c/samples/deckgl-kml/"https://unpkg.com/material-components-web@6.0.0/dist/material-components-web.min.js"></script>%3C/div>
<script src=/proxy/https/github.com/googlemaps-samples/js-api-samples/blob/febfbaaaadc77bed6e4ababab4e4116d29af9d9c/samples/deckgl-kml/"https://unpkg.com/deck.gl@8.9.22/dist.min.js"></script>%3C/div>
<script src=/proxy/https/github.com/googlemaps-samples/js-api-samples/blob/febfbaaaadc77bed6e4ababab4e4116d29af9d9c/samples/deckgl-kml/"https://unpkg.com/@deck.gl/google-maps@8.9.22/dist.min.js"></script>%3C/div>
<link rel="stylesheet" href=/proxy/https/github.com/googlemaps-samples/js-api-samples/blob/febfbaaaadc77bed6e4ababab4e4116d29af9d9c/samples/deckgl-kml/"style.css">%3C/div>
<script src=/proxy/https/github.com/googlemaps-samples/js-api-samples/blob/febfbaaaadc77bed6e4ababab4e4116d29af9d9c/samples/deckgl-kml/"index.js" type="module" defer></script>
</head>
<body>
<div
role="progressbar"
class="mdc-linear-progress"
aria-label="Data Progress Bar"
>
<div class="mdc-linear-progress__buffer">
<div class="mdc-linear-progress__buffer-bar"></div>
<div class="mdc-linear-progress__buffer-dots"></div>
</div>
<div class="mdc-linear-progress__bar mdc-linear-progress__primary-bar">
<span class="mdc-linear-progress__bar-inner"></span>
</div>
<div class="mdc-linear-progress__bar mdc-linear-progress__secondary-bar">
<span class="mdc-linear-progress__bar-inner"></span>
</div>
</div>
<script>
var progress, progressDiv;
progressDiv = document.querySelector(".mdc-linear-progress");
progress = new mdc.linearProgress.MDCLinearProgress(progressDiv);
progress.open();
progress.determinate = false;
progress.done = function () {
progress.close();
progressDiv.remove();
};
</script>
<h1>Deck.gl KMLLoader</h1>
<div id="map"></div>
<div id="tooltip" class="tooltip"></div>
<script>(g=>{var h,a,k,p="The Google Maps JavaScript API",c="google",l="importLibrary",q="__ib__",m=document,b=window;b=b[c]||(b[c]={});var d=b.maps||(b.maps={}),r=new Set,e=new URLSearchParams,u=()=>h||(h=new Promise(async(f,n)=>{await (a=m.createElement("script"));e.set("libraries",[...r]+"");for(k in g)e.set(k.replace(/[A-Z]/g,t=>"_"+t[0].toLowerCase()),g[k]);e.set("callback",c+".maps."+q);a.src=/proxy/https/github.com/googlemaps-samples/js-api-samples/blob/febfbaaaadc77bed6e4ababab4e4116d29af9d9c/samples/deckgl-kml/%60https://maps.$%7Bc%7Dapis.com/maps/api/js?`+e;d[q]=f;a.onerror=()=>h=n(Error(p+" could not load."));a.nonce=m.querySelector("script[nonce]")?.nonce||"";m.head.append(a)}));d[l]?console.warn(p+" only loads once. Ignoring:",g):d[l]=(f,...n)=>r.add(f)&&u().then(()=>d[l](f,...n))})
({key: "AIzaSyA6myHzS10YXdcazAFalmXvDkrYCp5cLc8", v: "weekly"});</script>
</body>
</html>
You can’t perform that action at this time.