forked from SuperMap/iClient-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path02_getFeatureByIDs.html
More file actions
133 lines (125 loc) · 4.68 KB
/
Copy path02_getFeatureByIDs.html
File metadata and controls
133 lines (125 loc) · 4.68 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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!--********************************************************************
* Copyright© 2000 - 2025 SuperMap Software Co.Ltd. All rights reserved.
*********************************************************************-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no'/>
<title data-i18n="resources.title_getFeatureByIDs"></title>
<style>
body {
margin: 0;
padding: 0;
}
#map {
position: absolute;
top: 0;
bottom: 0;
width: 100%;
}
#toolbar {
position: absolute;
top: 50px;
right: 10px;
width: 240px;
text-align: center;
z-index: 1000;
border-radius: 4px;
}
</style>
</head>
<body>
<div id="toolbar" class="panel panel-primary">
<div class='panel-heading'>
<h5 class='panel-title text-center' data-i18n="resources.title_getFeatureByIDs"></h5></div>
<div class='panel-body content'>
<input type="button" class="btn btn-default" data-i18n="[value]resources.text_query" onclick="query()"/>
<input type="button" class="btn btn-default" data-i18n="[value]resources.text_input_value_clear" onclick="clearFeatures()"/>
</div>
</div>
<div id="map"></div>
<script type="text/javascript" include="bootstrap" src="../js/include-web.js"></script>
<script type="text/javascript" src="../../dist/mapboxgl/include-mapboxgl.js"></script>
<script type="text/javascript">
var host = window.isLocal ? window.server : "https://iserver.supermap.io";
var attribution = "<a href='https://www.mapbox.com/about/maps/' target='_blank'>© Mapbox </a>" +
" with <span>© <a href='https://iclient.supermap.io' target='_blank'>SuperMap iClient</a> | </span>" +
" Map Data <span>© <a href='http://support.supermap.com.cn/product/iServer.aspx' target='_blank'>SuperMap iServer</a></span> ";
var baseUrl = host + '/iserver/services/map-china/rest/maps/China/zxyTileImage.png?z={z}&x={x}&y={y}',
dataUrl = host + "/iserver/services/data-world/rest/data";
var map = new mapboxgl.Map({
container: 'map',
style: {
"version": 8,
"sources": {
"raster-tiles": {
"attribution": attribution,
"type": "raster",
"tiles": [baseUrl],
"tileSize": 256
}
},
"layers": [{
"id": "simple-tiles",
"type": "raster",
"source": "raster-tiles",
"minzoom": 0,
"maxzoom": 22
}]
},
center: [120.143, 30.236],
zoom: 5
});
map.addControl(new mapboxgl.NavigationControl(), 'top-left');
map.addControl(new mapboxgl.supermap.LogoControl({ link: "https://iclient.supermap.io" }), 'bottom-right');
//查询函数:
function query() {
clearFeatures();
var idsParam = new mapboxgl.supermap.GetFeaturesByIDsParameters({
IDs: [234],
datasetNames: ["World:Countries"]
});
var service = new mapboxgl.supermap.FeatureService(dataUrl);
// service.getFeaturesByIDs(idsParam, function (serviceResult) {
// map.addSource("queryDatas", {
// "type": "geojson",
// "data": serviceResult.result.features
// });
// map.addLayer({
// "id": "queryDatas",
// "type": "fill",
// "source": "queryDatas",
// "paint": {
// "fill-color": "#008080", /* 填充的颜色 */
// "fill-opacity": 0.4 /* 透明度 */
// },
// "filter": ["==", "$type", "Polygon"]
// });
// });
service.getFeaturesByIDs(idsParam).then(function (serviceResult) {
map.addSource("queryDatas", {
"type": "geojson",
"data": serviceResult.result.features
});
map.addLayer({
"id": "queryDatas",
"type": "fill",
"source": "queryDatas",
"paint": {
"fill-color": "#008080", /* 填充的颜色 */
"fill-opacity": 0.4 /* 透明度 */
},
"filter": ["==", "$type", "Polygon"]
});
});
}
function clearFeatures() {
if (map.getLayer('queryDatas')) {
map.removeLayer('queryDatas');
map.removeSource('queryDatas');
}
}
</script>
</body>
</html>