-
Notifications
You must be signed in to change notification settings - Fork 288
Expand file tree
/
Copy path01_tiledMapLayer.html
More file actions
71 lines (67 loc) · 2.69 KB
/
01_tiledMapLayer.html
File metadata and controls
71 lines (67 loc) · 2.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
<!--********************************************************************
* Copyright© 2000 - 2025 SuperMap Software Co.Ltd. All rights reserved.
*********************************************************************-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no" />
<title data-i18n="resources.title_tiledMapLayer"></title>
<script type="text/javascript" src="../js/include-web.js"></script>
<style>
body {
margin: 0;
padding: 0;
}
#map {
position: absolute;
top: 0;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<div id="map"></div>
<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> ";
// 方式一:1.调用 mapboxgl.supermap.initMap,根据 SuperMap iServer 地图服务的地图信息,创建地图和底图
mapboxgl.supermap
.initMap(host + '/iserver/services/map-china/rest/maps/China', {mapOptions:{zoom: 4}})
.then(function (result) {
var map = result.map;
map.addControl(new mapboxgl.NavigationControl(), 'top-left');
});
// 方法二: 直接用 mapboxgl.Map 初始化
// var map = new mapboxgl.Map({
// container: 'map', // container id
// style: {
// "version": 8,
// "sources": {
// "raster-tiles": {
// "attribution": attribution,
// "type": "raster",
// "tiles": [host + '/iserver/services/map-china/rest/maps/China/zxyTileImage.png?z={z}&x={x}&y={y}'],
// "tileSize": 256
// }
// },
// "layers": [{
// "id": "simple-tiles",
// "type": "raster",
// "source": "raster-tiles",
// "minzoom": 0,
// "maxzoom": 22
// }]
// },
// center: [120.143, 30.236], // starting position
// zoom: 3 // starting zoom
// });
// map.addControl(new mapboxgl.NavigationControl(), 'top-left');
</script>
</body>
</html>