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
|
<!DOCTYPE html>
<html>
<head>
<title>BigQuery Tileset Layer</title>
<script src="https://polyfill.io/v3/polyfill.min.js?features=default"></script>
<script src="https://unpkg.com/deck.gl@^8.6.0/dist.min.js"></script>
<script src="https://unpkg.com/@deck.gl/carto@^8.6.0/dist.min.js"></script>
<style>
#map {
height: 100%;
}
html,
body {
height: 100%;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="map"></div>
<script
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDvHtBZM79O5uGTBT1ZOWOKW2_FVMstHNs&callback=initMap&libraries=&v=beta"
async
></script>
</body>
<script type="text/javascript">
let map;
function initMap() {
map = new google.maps.Map(document.getElementById("map"), {
center: { lat: 40.73, lng: -73.8 },
zoom: 9,
mapId: '856f688f677c0bc3',
fullscreenControl: false,
streetViewControl: false,
zoomControlOptions: {
position: google.maps.ControlPosition.LEFT_BOTTOM,
},
});
deck.carto.setDefaultCredentials({
username: 'public',
apiKey: 'default_public',
apiVersion: deck.carto.API_VERSIONS.V2,
});
const deckOverlay = new deck.GoogleMapsOverlay({
layers: [
new deck.carto.CartoLayer({
type: deck.carto.MAP_TYPES.TILESET,
data: 'cartobq.maps.nyc_taxi_points_demo_id',
getFillColor: deck.carto.colorBins({
attr: 'aggregated_total',
domain: [10, 1e2, 1e3, 1e4, 1e5, 1e6],
colors: 'Temps'
}),
pointRadiusMinPixels: 2,
stroked: false,
})
]
});
deckOverlay.setMap(map);
}
</script>
</html>
|