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
|
<html>
<head>
<!-- FONT -->
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap"
rel="stylesheet"
/>
<script src="https://unpkg.com/deck.gl@^8.4.0/dist.min.js"></script>
<script src="https://unpkg.com/@deck.gl/carto@^8.4.0/dist.min.js"></script>
<script src="https://libs.cartocdn.com/mapbox-gl/v1.13.0/mapbox-gl.js"></script>
<link href="https://libs.cartocdn.com/mapbox-gl/v1.13.0/mapbox-gl.css" rel="stylesheet" />
</head>
<body style="margin: 0; padding: 0; font-family: 'Open Sans', Helvetica, sans-serif;">
<div id="map" style="width: 100vw; height: 100vh;"></div>
</body>
<script type="text/javascript">
deck.carto.setDefaultCredentials({
username: 'public',
apiKey: 'default_public',
});
const deckgl = new deck.DeckGL({
container: 'map',
mapStyle: 'https://basemaps.cartocdn.com/gl/positron-gl-style/style.json',
initialViewState: {
latitude: 40.715,
longitude: -73.959,
zoom: 14,
},
controller: true,
layers: [
new deck.carto.CartoSQLLayer({
id: 'wburg_parcels',
data: 'SELECT the_geom_webmercator, landuse_type FROM wburg_parcels',
getFillColor: deck.carto.colorCategories({
attr: 'landuse_type',
domain: [
'Multi-Family Walk-Up Buildings',
'Multi-Family Elevator Buildings',
'Mixed Residential And Commercial Buildings',
'Parking Facilities',
'1 and 2 Family Buildings',
'Commercial and Office Buildings',
'Vacant Land',
'Public Facilities and Institutions',
'Transportation and Utility',
'Open Space and Outdoor Recreation',
'Industrial and Manufacturing'
],
colors: 'Bold'
}),
getLineColor: [0, 0, 0, 100],
lineWidthMinPixels: 0.5,
pickable: true,
}),
],
getTooltip: ({ object }) => {
if (!object) return false;
return {
html: `${object.properties.landuse_type}`,
};
},
});
</script>
</html>
|