-
Notifications
You must be signed in to change notification settings - Fork 288
Expand file tree
/
Copy path02_datasetService.html
More file actions
142 lines (135 loc) · 5.69 KB
/
02_datasetService.html
File metadata and controls
142 lines (135 loc) · 5.69 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
134
135
136
137
138
139
140
141
142
<!--********************************************************************
* Copyright© 2000 - 2025 SuperMap Software Co.Ltd. All rights reserved.
*********************************************************************-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title data-i18n="resources.title_DatasetInfo"></title>
<script type="text/javascript" src="../../dist/mapboxgl/include-mapboxgl.js"></script>
<style>
body {
margin: 0;
overflow: hidden;
background: #fff;
width: 100%;
height: 100%
}
#map {
position: absolute;
width: 100%;
height: 100%;
}
#toolbar {
position: absolute;
top: 50px;
right: 10px;
width: 300px;
text-align: center;
z-index: 100;
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_DatasetInfo"></h5></div>
<div class='panel-body content'>
<div class='panel'>
<div class='input-group'>
<span class='input-group-addon' data-i18n ="resources.text_Datasources"></span>
<select id='datasourcesSelect' class='form-control'></select>
</div>
</div>
<div class='panel'>
<div class='input-group'>
<span class='input-group-addon' data-i18n ="resources.text_dataset"></span>
<select id='datasetsSelect' class='form-control'></select>
</div>
</div>
<input type="button" class="btn btn-default" data-i18n ="[value]resources.btn_query"
onclick="datasetsPrint()"/>
</div>
</div>
<div id="map"></div>
<script type="text/javascript" include="bootstrap-css" src="../js/include-web.js"></script>
<script>
let map,
datasetsSelect,
datasourcesSelect,
datasourceName,
popup;
baseUrl = (window.isLocal ? window.server : "https://iserver.supermap.io") + "/iserver/services/map-world/rest/maps/World Map/zxyTileImage.png?z={z}&x={x}&y={y}",
dataUrl = (window.isLocal ? window.server : "https://iserver.supermap.io") + "/iserver/services/data-world/rest/data";
let 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> ";
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",
}]
},
center: [0, 0],
zoom: 2
});
map.addControl(new mapboxgl.NavigationControl(), 'top-left');
map.addControl(new mapboxgl.supermap.LogoControl({ link: "https://iclient.supermap.io" }), 'bottom-right');
map.on("load", function () {
dataSetService();
});
function dataSetService() {
new mapboxgl.supermap.DatasourceService(dataUrl).getDatasources(function (serviceResult) {
datasourcesSelect = document.getElementById("datasourcesSelect");
const datasourceNames = serviceResult.result.datasourceNames;
for (let i = 0,len = datasourceNames.length; i < len; i++) {
datasourcesSelect.options[i] = new Option(datasourceNames[i], datasourceNames[i]);
}
datasourceName = datasourcesSelect.value;
datasetsService(datasourceName)
})
}
//数据集信息
function datasetsService(datasourceName){
new mapboxgl.supermap.DatasetService(dataUrl).getDatasets(datasourceName,function (serviceResult) {
const datasetNames = serviceResult.result.datasetNames;
datasetsSelect = document.getElementById("datasetsSelect");
for (let i = 0,len = datasetNames.length; i < len; i++) {
datasetsSelect.options[i] = new Option(datasetNames[i], datasetNames[i]);
}
});
}
function datasetsPrint(){
const datasetName = datasetsSelect.value;
if(popup) {
popup.remove();
}
new mapboxgl.supermap.DatasetService(dataUrl).getDataset(datasourceName,datasetName,function (serviceResult) {
let innerHTML = "(" + resources.text_datasetInfoPrint + ")" + "<br><br>";
innerHTML += "dataSourceName:" + JSON.stringify(serviceResult.result.datasetInfo.dataSourceName, null, 2) + "<br>";
innerHTML += "description:" + JSON.stringify(serviceResult.result.datasetInfo.description, null, 2) + "<br>";
innerHTML += "isFileCache:" + JSON.stringify(serviceResult.result.datasetInfo.isFileCache, null, 2) + "<br>";
innerHTML += "name:" + JSON.stringify(serviceResult.result.datasetInfo.name, null, 2) + "<br>";
innerHTML += "prjCoordSys:" + "(...)" + "<br>";
popup = new mapboxgl.Popup({closeOnClick: false})
.setLngLat([0,0])
.setHTML(innerHTML + "</br>")
.addTo(map);
});
}
</script>
</body>
</html>