-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbinning.html
93 lines (78 loc) · 1.68 KB
/
binning.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no">
<title>Point Binning</title>
<link rel="stylesheet" href="https://jsdev.arcgis.com/4.4/esri/css/main.css">
<style>
html,
body,
#viewDiv {
padding: 0;
margin: 0;
height: 100%;
width: 100%;
}
</style>
<script>
var locationPath = window.location.href.replace(/\/[^/]+$/, "/")
var dojoConfig = {
paths: {
layers: locationPath + "src/layers"
}
};
</script>
<script src="https://jsdev.arcgis.com/4.4/"></script>
<style>
html,
body,
#viewDiv {
padding: 0;
margin: 0;
height: 100%;
width: 100%;
}
</style>
</head>
<body>
<div id="viewDiv"></div>
<script>
require([
"esri/Map",
"esri/views/MapView",
"esri/layers/FeatureLayer",
"esri/widgets/LayerList",
"layers/PointBinLayer",
"layers/palette"
],
function(
Map,
MapView,
FeatureLayer,
LayerList,
PointBinLayer, palette
) {
map = new Map({
basemap: "dark-gray",
layers: [
new PointBinLayer({
layer: new FeatureLayer("http://services.arcgis.com/V6ZHFr6zdgNZuVG0/arcgis/rest/services/Restaurants/FeatureServer/0")
})
]
});
view = new MapView({
container: "viewDiv",
map: map,
center: [-100, 40],
zoom: 5,
constraints: {
minZoom: 5,
snapToZoom: false
}
});
view.ui.add(new LayerList({ view: view }), "top-right");
});
</script>
</body>
</html>