Map_theme_label.vue
4.64 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
<!--
* @Author: jiangbotao
* @Date: 2019-12-10 14:16:04
* @LastEditors: jiangbotao
* @LastEditTime: 2019-12-10 15:43:09
* @FilePath: \mymapbox\src\components\Map_filter_sql.vue
-->
<template>
<div >
<div id="map"></div>
</div>
</template>
<script>
import mapboxgl from 'mapbox-gl';
import { Logo, FeatureService, QueryService, ThemeService } from '@supermap/iclient-mapboxgl';
export default {
name: 'HelloWorld',
data () {
return {
}
},
mounted(){
var map, host = "http://support.supermap.com.cn:8090";
var url = host + "/iserver/services/map-world/rest/maps/World";
var dataUrl = host + "/iserver/services/map-china400/rest/maps/China";
var map = new mapboxgl.Map({
container: 'map',
style: {
"version": 8,
"sources": {
"raster-tiles": {
"attribution": 'attribution',
"type": "raster",
"tiles": [host + '/iserver/services/map-china400/rest/maps/China/zxyTileImage.png?prjCoordSys={"epsgCode":3857}&z={z}&x={x}&y={y}'],
"tileSize": 256,
},
},
"layers": [{
"id": "simple-tiles",
"type": "raster",
"source": "raster-tiles",
"minzoom": 0,
"maxzoom": 22
}],
},
center: [108.94, 34.34],
maxZoom: 18,
zoom: 2
});
map.addControl(new Logo(), 'bottom-right');
map.addControl(new mapboxgl.NavigationControl(), 'top-left');
map.on('load', function () {
createTheme();
});
function createTheme() {
var style1, style2, style3;
style1 = new SuperMap.ServerTextStyle({
fontHeight: 4,
foreColor: new SuperMap.ServerColor(0, 0, 0),
});
style2 = new SuperMap.ServerTextStyle({
fontHeight: 4,
foreColor: new SuperMap.ServerColor(155, 30, 45),
});
style3 = new SuperMap.ServerTextStyle({
fontHeight: 4,
foreColor: new SuperMap.ServerColor(30, 45, 155),
});
var themeLabelItem1, themeLabelItem2, themeLabelItem3;
themeLabelItem1 = new SuperMap.ThemeLabelItem({
start: 300,//110000,
end: 3508,//350000,
style: style1
});
themeLabelItem2 = new SuperMap.ThemeLabelItem({
start: 3508,//350000,
end: 5508,//550000,
style: style2
});
themeLabelItem3 = new SuperMap.ThemeLabelItem({
start: 5508,//550000,
end: 10724,//820000,
style: style3
});
var themeLabel = new SuperMap.ThemeLabel({
labelExpression: "NAME",
rangeExpression: "pop_2014",
numericPrecision: 0,
items: [themeLabelItem1, themeLabelItem2, themeLabelItem3],
background: new SuperMap.ThemeLabelBackground({
backStyle: new SuperMap.ServerStyle({
fillForeColor: new SuperMap.ServerColor(179, 209, 193),
fillOpaqueRate: 60,
lineWidth: 0.1
}),
labelBackShape: "RECT"
})
});
var themeParameters = new SuperMap.ThemeParameters({
themes: [themeLabel],
datasetNames: ["China_Province_pg"],
dataSourceNames: ["China"]
});
new ThemeService(dataUrl).getThemeInfo(themeParameters, function (serviceResult) {
var result = serviceResult.result;
if (result && result.newResourceID) {
map.addSource("theme", {
"type": 'raster',
"tiles": [host + '/iserver/services/map-china400/rest/maps/China/zxyTileImage.png?z={z}&x={x}&y={y}&transparent=true&cacheEnabled=false&layersID=' + result.newResourceID],
"tileSize": 256,
});
map.addLayer({
"id": "themeLayer",
"type": "raster",
"source": "theme",
});
}
})
}
}
}
</script>
<style scoped>
#map {
position: absolute;
height: 100%;
width: 100%;
background-color: white
}
</style>