forked from AJJackGIS/Cesium
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path剖面分析.js
170 lines (158 loc) · 5.9 KB
/
剖面分析.js
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
var viewer = null;
var scene = null;
function onload(Cesium) {
viewer = new Cesium.Viewer('cesiumContainer', {
imageryProvider: new Cesium.UrlTemplateImageryProvider({
url: 'http://www.google.cn/maps/vt?lyrs=s@716&x={x}&y={y}&z={z}'
}),
terrainProvider: new Cesium.CesiumTerrainProvider({
url: 'http://172.29.1.151:8090/iserver/services/3D-dx/rest/realspace/datas/纸坊镇地形@dx',
isSct: true//地形服务源自SuperMap iServer发布时需设置isSct为true
})
});
scene = viewer.scene;
var widget = viewer.cesiumWidget;
//设置相机视角
scene.camera.setView({
destination: new Cesium.Cartesian3(-2263380.078177295, 5019188.160818346, 3221060.8091996885),
orientation: {
heading: 0.33707892178179844,
pitch: -0.351382914255425,
roll: 6.283185307179524
}
});
$('#loadingbar').remove();
var myChart = echarts.init(document.getElementById('chart'));
var resultObject;
var handlerLine = new Cesium.DrawHandler(viewer, Cesium.DrawMode.Line);
handlerLine.drawEvt.addEventListener(function (result) {
resultObject = result.object; // 绘制线的坐标集合
});
document.getElementById("drawLine").onclick = function () {
deactiveAll();
handlerLine.activate();
};
document.getElementById("chooseView").onclick = function () {
addResultLayer();
};
function deactiveAll() {
handlerLine.deactivate();
}
function addResultLayer() {
if (!resultObject) {
alert('请先画线!');
return;
}
// 将Cesium.Cartesian3(x, y, z)格式点转换为SuperMap.Geometry.Point(x,y)
var line = CesiumToSuperMap.convertPolyline(Cesium, SuperMap, resultObject);
// 需要supermap发布的空间分析服务
var profileUrl = 'http://172.29.1.151:8090/iserver/services/spatialAnalysis-dx/restjsr/spatialanalyst/datasets/纸坊镇地形@dx/terraincalculation/profile.jsonp?returnContent=true';
// 点集
var points = [];
points.push(new SuperMap.Geometry.Point(line.getVertices()[0].x, line.getVertices()[0].y));
points.push(new SuperMap.Geometry.Point(line.getVertices()[1].x, line.getVertices()[1].y));
// 查询条件
var serverGeometry = new SuperMap.REST.ServerGeometry({
id: 0,//必须是number类型
style: null,
parts: [2],
type: 'LINE',
points: points,
prjCoordSys: null
});
// 执行查询
SuperMap.Util.committer({
method: 'POST',
url: profileUrl,
data: {
line: serverGeometry,
resampleTolerance: '0.5'
},
success: function (args) {
buildProfile(args);
},
failure: function (err) {
console.log(err);
}
});
}
// 构建剖面
function buildProfile(result) {
var profileRes = result.profile[0];
var xyCoord = result.xyCoordinate[0];
if (!profileRes || !xyCoord) {
return;
}
var xMax = 0, yMax = 0;
var points = profileRes.points; // x,y值
var xyCoordPoints = xyCoord.points; // 坐标
var arr = [];
for (var i = 0, j = points.length; i < j; i++) {
var x = points[i].x;
var y = points[i].y;
var lon = xyCoordPoints[i].x;
var lat = xyCoordPoints[i].y;
arr.push([x, y, lon, lat]);
xMax = x > xMax ? x : xMax;
yMax = y > yMax ? y : yMax;
}
myChart.clear();
myChart.setOption({
title : {
text : '剖面图'
},
tooltip: {
trigger: 'axis',
formatter: function (params) {
var param = params[0];
var x = param.data[0];
var y = param.data[1];
var lon = param.data[2];
var lat = param.data[3];
return 'x : ' + lon + '</br>' + 'y : ' + lat + '</br>' + 'z : ' + y;
},
axisPointer: {
animation: false
}
},
toolbox: {
feature: {
saveAsImage: {},
myTool1 : {
show : true,
title : '关闭',
icon : 'path://M432.45,595.444c0,2.177-4.661,6.82-11.305,6.82c-6.475,0-11.306-4.567-11.306-6.82s4.852-6.812,11.306-6.812C427.841,588.632,432.452,593.191,432.45,595.444L432.45,595.444z M421.155,589.876c-3.009,0-5.448,2.495-5.448,5.572s2.439,5.572,5.448,5.572c3.01,0,5.449-2.495,5.449-5.572C426.604,592.371,424.165,589.876,421.155,589.876L421.155,589.876z M421.146,591.891c-1.916,0-3.47,1.589-3.47,3.549c0,1.959,1.554,3.548,3.47,3.548s3.469-1.589,3.469-3.548C424.614,593.479,423.062,591.891,421.146,591.891L421.146,591.891zM421.146,591.891',
onclick : function(){
$('#chart').hide();
}
}
}
},
grid: {
left: '3%',
right: '4%',
bottom: '3%',
containLabel: true
},
xAxis : {
min : 0,
max : xMax*1.2,
type : 'value'
},
yAxis : {
type : 'value',
min : 0,
max : yMax*1.2
},
series : [{
type : 'line',
data : arr,
showSymbol: false,
color : 'green'
}],
backgroundColor : 'white',
color : '#c23531'
});
$('#chart').show();
}
}