-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path2d-filter-example.html
72 lines (68 loc) · 1.77 KB
/
2d-filter-example.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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
<title>ArcGIS JavaScript Tutorials: Create a Starter App</title>
<style>
html, body, #viewDiv {
padding: 0;
margin: 0;
height: 100%;
width: 100%;
}
</style>
<link rel="stylesheet" href="https://js.arcgis.com/4.15/esri/themes/light/main.css">
<script src="https://js.arcgis.com/4.15/"></script>
<script>
require([
"esri/Map",
"esri/views/MapView",
"esri/Graphic",
"esri/layers/GraphicsLayer",
"esri/request",
"esri/layers/GeoJSONLayer"
], function(Map, MapView, Graphic, GraphicsLayer, esriRequest, GeoJSONLayer) {
var map = new Map({
basemap: "topo-vector"
});
map.on("load", function(){
map.graphics.enableMouseEvents();
});
var view = new MapView({
container: "viewDiv",
map: map,
center: [106.8033387, 10.8739831],
zoom: 16,
highlightOptions: {
color: "blue"
}
});
var options = {
query: {
f: "json"
},
responseType: "json"
};
const geojsonLayer = new GeoJSONLayer({
url: "api.php?name=spaghetti_geojson&type=polygon&filters=[{\"key\":\"po.description\",\"value\":\"DH%20CNTT\"}]"
});
geojsonLayer.renderer = {
type: "simple",
symbol: {
type: "simple-fill",
color: [227, 139, 79, 0.4],
outline: {
color: [255, 255, 255],
width: 1
}
}
};
map.add(geojsonLayer);
view.popup.defaultPopupTemplateEnabled = true;
});
</script>
</head>
<body>
<div id="viewDiv"></div>
</body>
</html>