Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
zhengyuan-danger-chemistry-manage
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
耿迪迪
zhengyuan-danger-chemistry-manage
Commits
fc952a7f
Commit
fc952a7f
authored
Sep 29, 2022
by
纪泽龙
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
改变设备的位置,新模型
parent
d85156c4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
115 additions
and
99 deletions
+115
-99
cesiumClass.js
danger-manage-web/src/utils/cesium/cesiumClass.js
+31
-15
index.vue
danger-manage-web/src/views/dangerControl/monitor/index.vue
+13
-13
index.vue
danger-manage-web/src/views/dangerScale/profile/index.vue
+24
-24
index.vue
danger-manage-web/src/views/index.vue
+47
-47
No files found.
danger-manage-web/src/utils/cesium/cesiumClass.js
View file @
fc952a7f
/*
* @Author: your name
* @Date: 2021-12-07 14:19:18
* @LastEditTime: 2022-09-
15 11:06:25
* @LastEditTime: 2022-09-
29 20:08:54
* @LastEditors: 纪泽龙 jizelong@qq.com
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: /cesium-vue/src/utils/seieumClass.js
...
...
@@ -295,7 +295,7 @@ export default class CreateCesium {
let
offset
=
Cesium
.
Cartesian3
.
fromRadians
(
Cesium
.
Math
.
toRadians
(
gaodeLnglat
.
lng
),
Cesium
.
Math
.
toRadians
(
gaodeLnglat
.
lat
),
26
-
160
);
let
translation
=
Cesium
.
Cartesian3
.
subtract
(
offset
,
...
...
@@ -312,20 +312,24 @@ export default class CreateCesium {
// 1.6454928984350525 -1.0974068412623752 0.00004639407505457882 114.14437322429676 38.398663934418344 319.0140849711926
if
(
main
)
{
this
.
tilesetArr
.
push
(
tileset
);
setTimeout
(()
=>
{
this
.
viewer
.
scene
.
camera
.
flyTo
({
destination
:
Cesium
.
Cartesian3
.
fromDegrees
(
114.
14437322429676
,
38.
39866393441834
4
,
319.0140849711926
114.
08722973596568
,
38.
25167964454808
4
,
784
),
//定位坐标点,建议使用谷歌地球坐标位置无偏差
orientation
:
{
heading
:
1.6454928984350525
,
// 方向
pitch
:
-
1.0974068412623752
,
// 倾斜角度
roll
:
0.00004639407505457882
,
//
heading: 1.6454928984350525, // 方向
//
pitch: -1.0974068412623752, // 倾斜角度
//
roll: 0.00004639407505457882,
// heading: Cesium.Math.toRadians(20.0), // 方向
// pitch: Cesium.Math.toRadians(-90.0,), // 倾斜角度
// roll: 1.3,
heading
:
Cesium
.
Math
.
toRadians
(
177
),
// 方向
pitch
:
Cesium
.
Math
.
toRadians
(
-
81.61
),
// 倾斜角度
// roll: 1.3,
},
duration
:
0.1
,
//定位的时间间隔
...
...
@@ -354,6 +358,7 @@ export default class CreateCesium {
this
.
createDevice
(
movement
);
}
var
picked
=
this
.
scene
.
pick
(
movement
.
position
);
console
.
log
(
"picked"
,
picked
);
if
(
Cesium
.
defined
(
picked
))
{
if
(
picked
.
id
&&
picked
.
id
instanceof
Cesium
.
Entity
)
{
// console.log(picked.id)
...
...
@@ -402,10 +407,20 @@ export default class CreateCesium {
}
if
(
picked
instanceof
Cesium
.
Cesium3DTileFeature
)
{
console
.
log
(
"选中了3DTile"
);
const
ln
=
this
.
getLnglat
(
movement
);
console
.
log
(
ln
);
}
}
const
height
=
this
.
viewer
.
camera
.
positionCartographic
.
height
.
toFixed
(
0
);
//方向 围绕Z轴旋转
const
heading
=
Cesium
.
Math
.
toDegrees
(
this
.
viewer
.
camera
.
heading
).
toFixed
(
2
);
//倾斜角度 围绕Y轴旋转
const
pitch
=
Cesium
.
Math
.
toDegrees
(
this
.
viewer
.
camera
.
pitch
).
toFixed
(
2
);
//围绕X轴旋转
const
roll
=
Cesium
.
Math
.
toDegrees
(
this
.
viewer
.
camera
.
roll
).
toFixed
(
2
);
console
.
log
(
height
,
heading
,
pitch
,
roll
);
const
ln
=
this
.
getLnglat
(
movement
);
console
.
log
(
ln
);
},
Cesium
.
ScreenSpaceEventType
.
LEFT_CLICK
);
handler
.
setInputAction
((
movement
)
=>
{
// 新建
...
...
@@ -439,6 +454,7 @@ export default class CreateCesium {
// this.clearInfoWindow();
var
picked
=
this
.
scene
.
pick
(
movement
.
position
);
console
.
log
(
movement
.
position
);
if
(
Cesium
.
defined
(
picked
))
{
if
(
picked
.
id
&&
picked
.
id
instanceof
Cesium
.
Entity
)
{
// console.log(picked.id)
...
...
@@ -1068,18 +1084,18 @@ export default class CreateCesium {
});
}
// 危险源与风险分布区切换
dangeDeviceChange
(
type
,
bottomDeviceArr
)
{
dangeDeviceChange
(
type
,
bottomDeviceArr
)
{
if
(
type
==
1
)
{
this
.
deviceAllShow
(
true
,
bottomDeviceArr
);
this
.
deviceAllShow
(
true
,
bottomDeviceArr
);
this
.
dangerAllShow
(
false
);
}
else
{
this
.
deviceAllShow
(
false
,
bottomDeviceArr
);
this
.
deviceAllShow
(
false
,
bottomDeviceArr
);
this
.
dangerAllShow
(
true
);
}
this
.
clearInfoWindow
();
}
destroy
(){
this
.
viewer
.
destroy
()
destroy
()
{
this
.
viewer
.
destroy
()
;
}
// 兼容性
compatibility
()
{
...
...
danger-manage-web/src/views/dangerControl/monitor/index.vue
View file @
fc952a7f
...
...
@@ -2,7 +2,7 @@
* @Author: 纪泽龙 jizelong@qq.com
* @Date: 2022-06-16 15:03:40
* @LastEditors: 纪泽龙 jizelong@qq.com
* @LastEditTime: 2022-09-
15 11:06:58
* @LastEditTime: 2022-09-
29 20:51:09
* @FilePath: /danger-manage-web/src/views/bigwindow/index.vue
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
-->
...
...
@@ -44,16 +44,16 @@ export default {
danger
:
true
,
data1
:
[
{
deviceType
:
1
,
longitude
:
114.
1466347956094
7
,
latitude
:
38.
39968509861548
,
deviceType
:
1
1
,
longitude
:
114.
0857215461341
7
,
latitude
:
38.
25127267081466
,
shortNum
:
10
,
title
:
"视频1"
,
},
{
deviceType
:
1
,
longitude
:
114.
14649648472712
,
latitude
:
38.
39869677916153
,
deviceType
:
1
1
,
longitude
:
114.
08582661394571
,
latitude
:
38.
249478441102596
,
shortNum
:
16
,
title
:
"视频2"
,
},
...
...
@@ -61,9 +61,9 @@ export default {
data2
:
[
{
deviceType
:
3
,
longitude
:
114.
14625055544744
,
latitude
:
38.
398166454284954
,
shortNum
:
6.8
,
longitude
:
114.
08274961653991
,
latitude
:
38.
24983876031178
,
shortNum
:
15
,
title
:
"气体探测器"
,
sbmc
:
"气体探测器"
,
sbbh
:
"HBS030015037"
,
...
...
@@ -72,9 +72,9 @@ export default {
},
{
deviceType
:
4
,
longitude
:
114.
14621150048251
,
latitude
:
38.
3978928007328
6
,
shortNum
:
6
,
longitude
:
114.
08344461545148
,
latitude
:
38.
24981432804345
6
,
shortNum
:
15
,
title
:
"压力探测器"
,
sbmc
:
"压力探测器"
,
sbbh
:
"HBS030015037"
,
...
...
danger-manage-web/src/views/dangerScale/profile/index.vue
View file @
fc952a7f
...
...
@@ -2,7 +2,7 @@
* @Author: 纪泽龙 jizelong@qq.com
* @Date: 2022-06-16 15:03:40
* @LastEditors: 纪泽龙 jizelong@qq.com
* @LastEditTime: 2022-09-
15 11:07:03
* @LastEditTime: 2022-09-
29 20:47:06
* @FilePath: /danger-manage-web/src/views/bigwindow/index.vue
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
-->
...
...
@@ -63,9 +63,9 @@ export default {
data2
:
[
{
deviceType
:
2
,
longitude
:
114.
14672123792258
,
latitude
:
38.
39948060410065
,
shortNum
:
3
,
longitude
:
114.
0820982066482
,
latitude
:
38.
2500435240177
,
shortNum
:
7
,
title
:
"锅炉点火"
,
wxymc
:
"煤气管道"
,
zj
:
"DN1600"
,
...
...
@@ -80,9 +80,9 @@ export default {
},
{
deviceType
:
2
,
longitude
:
114.
1465551856004
8
,
latitude
:
38.
39788434842992
,
// shortNum: 2
,
longitude
:
114.
0874352914107
8
,
latitude
:
38.
25117222006519
,
shortNum
:
3
,
title
:
"有害气体"
,
wxymc
:
"氮气储罐"
,
gtrl
:
"2万m3"
,
...
...
@@ -101,10 +101,10 @@ export default {
danger
:
[
{
lnglatArr
:
[
[
114.
14717670710164
,
38.40005636539567
],
[
114.
1468107102057
,
38.40007904127634
],
[
114.
14667960459407
,
38.39920633274406
],
[
114.
14701877614534
,
38.39915715155819
],
[
114.
08693257466244
,
38.25122825128276
],
[
114.
08837308345032
,
38.25125456736997
],
[
114.
08840384602489
,
38.25162426832718
],
[
114.
08696540004983
,
38.25155912109927
],
],
colorNum
:
1
,
fxlb
:
"高风险区域"
,
...
...
@@ -125,10 +125,10 @@ export default {
},
{
lnglatArr
:
[
[
114.
14677730159013
,
38.39705223282708
],
[
114.
14649230680254
,
38.397063948491684
],
[
114.
14667103104993
,
38.39892681891495
],
[
114.
14701528471832
,
38.39889941695615
5
],
[
114.
08840968324529
,
38.250338608553484
],
[
114.
08705000996402
,
38.25027411252165
],
[
114.
08700204531098
,
38.25062619768719
],
[
114.
08841768197132
,
38.2506235240410
5
],
],
colorNum
:
2
,
fxlb
:
"中风险区域"
,
...
...
@@ -149,10 +149,10 @@ export default {
},
{
lnglatArr
:
[
[
114.
14625043839335
,
38.398287521835094
],
[
114.
14571696614324
,
38.398323224064
1
],
[
114.
14564758455208
,
38.397642064332715
],
[
114.
14616102903275
,
38.39756712393071
],
[
114.
0845936659788
,
38.25105615106475
],
[
114.
0829142987991
,
38.2509310245479
1
],
[
114.
08281445503589
,
38.251806239979324
],
[
114.
0845864560673
,
38.251975928617924
],
],
colorNum
:
3
,
fxlb
:
"低风险区域"
,
...
...
@@ -173,10 +173,10 @@ export default {
},
{
lnglatArr
:
[
[
114.
14657693947383
,
38.39841324770322
],
[
114.
14575681650135
,
38.39847565227806
6
],
[
114.
14593342445129
,
38.39992212369578
],
[
114.
14674496633742
,
38.39987290751477
],
[
114.
08289927467062
,
38.25012951022719
],
[
114.
08105697693159
,
38.2500386285910
6
],
[
114.
08100925876086
,
38.25057715370437
],
[
114.
08286147538506
,
38.2507022435366
],
],
colorNum
:
4
,
fxlb
:
"中低风险区域"
,
...
...
@@ -228,7 +228,7 @@ export default {
beforeDestroy
()
{
// 挂掉该关的 infowindow 跟计算infowindow位置的计时器
this
.
Cesium
.
clearInfoWindow
();
this
.
Cesium
.
destroy
()
this
.
Cesium
.
destroy
()
;
},
};
</
script
>
...
...
danger-manage-web/src/views/index.vue
View file @
fc952a7f
...
...
@@ -2,7 +2,7 @@
* @Author: 纪泽龙 jizelong@qq.com
* @Date: 2022-09-03 10:51:24
* @LastEditors: 纪泽龙 jizelong@qq.com
* @LastEditTime: 2022-09-
15 11:06:49
* @LastEditTime: 2022-09-
29 20:25:44
* @FilePath: /danger-manage-web/src/views/index.vue
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
-->
...
...
@@ -54,9 +54,9 @@ export default {
data2
:
[
{
deviceType
:
2
,
longitude
:
114.
14672123792258
,
latitude
:
38.
39948060410065
,
shortNum
:
3
,
longitude
:
114.
0820982066482
,
latitude
:
38.
2500435240177
,
shortNum
:
7
,
title
:
"锅炉点火"
,
wxymc
:
"煤气管道"
,
zj
:
"DN1600"
,
...
...
@@ -71,9 +71,9 @@ export default {
},
{
deviceType
:
2
,
longitude
:
114.
1465551856004
8
,
latitude
:
38.
39788434842992
,
// shortNum: 2
,
longitude
:
114.
0874352914107
8
,
latitude
:
38.
25117222006519
,
shortNum
:
3
,
title
:
"有害气体"
,
wxymc
:
"氮气储罐"
,
gtrl
:
"2万m3"
,
...
...
@@ -92,10 +92,10 @@ export default {
danger
:
[
{
lnglatArr
:
[
[
114.
14717670710164
,
38.40005636539567
],
[
114.
1468107102057
,
38.40007904127634
],
[
114.
14667960459407
,
38.39920633274406
],
[
114.
14701877614534
,
38.39915715155819
],
[
114.
08693257466244
,
38.25122825128276
],
[
114.
08837308345032
,
38.25125456736997
],
[
114.
08840384602489
,
38.25162426832718
],
[
114.
08696540004983
,
38.25155912109927
],
],
colorNum
:
1
,
fxlb
:
"高风险区域"
,
...
...
@@ -116,10 +116,10 @@ export default {
},
{
lnglatArr
:
[
[
114.
14677730159013
,
38.39705223282708
],
[
114.
14649230680254
,
38.397063948491684
],
[
114.
14667103104993
,
38.39892681891495
],
[
114.
14701528471832
,
38.39889941695615
5
],
[
114.
08840968324529
,
38.250338608553484
],
[
114.
08705000996402
,
38.25027411252165
],
[
114.
08700204531098
,
38.25062619768719
],
[
114.
08841768197132
,
38.2506235240410
5
],
],
colorNum
:
2
,
fxlb
:
"中风险区域"
,
...
...
@@ -140,10 +140,10 @@ export default {
},
{
lnglatArr
:
[
[
114.
14625043839335
,
38.398287521835094
],
[
114.
14571696614324
,
38.398323224064
1
],
[
114.
14564758455208
,
38.397642064332715
],
[
114.
14616102903275
,
38.39756712393071
],
[
114.
0845936659788
,
38.25105615106475
],
[
114.
0829142987991
,
38.2509310245479
1
],
[
114.
08281445503589
,
38.251806239979324
],
[
114.
0845864560673
,
38.251975928617924
],
],
colorNum
:
3
,
fxlb
:
"低风险区域"
,
...
...
@@ -164,10 +164,10 @@ export default {
},
{
lnglatArr
:
[
[
114.
14657693947383
,
38.39841324770322
],
[
114.
14575681650135
,
38.39847565227806
6
],
[
114.
14593342445129
,
38.39992212369578
],
[
114.
14674496633742
,
38.39987290751477
],
[
114.
08289927467062
,
38.25012951022719
],
[
114.
08105697693159
,
38.2500386285910
6
],
[
114.
08100925876086
,
38.25057715370437
],
[
114.
08286147538506
,
38.2507022435366
],
],
colorNum
:
4
,
fxlb
:
"中低风险区域"
,
...
...
@@ -190,15 +190,15 @@ export default {
data11
:
[
{
deviceType
:
11
,
longitude
:
114.
1466347956094
7
,
latitude
:
38.
39968509861548
,
longitude
:
114.
0857215461341
7
,
latitude
:
38.
25127267081466
,
shortNum
:
10
,
title
:
"视频1231231231231"
,
},
{
deviceType
:
11
,
longitude
:
114.
14649648472712
,
latitude
:
38.
39869677916153
,
longitude
:
114.
08579042117636
,
latitude
:
38.
24949662796779
,
shortNum
:
16
,
title
:
"视频2"
,
},
...
...
@@ -207,8 +207,8 @@ export default {
{
deviceType
:
12
,
deviceState
:
1
,
longitude
:
114.
14602680153222
,
latitude
:
38.
39935782980017
,
longitude
:
114.
08259457996853
,
latitude
:
38.
25080252536212
,
shortNum
:
12
,
title
:
"报警器"
,
sbmc
:
"气体报警器"
,
...
...
@@ -219,8 +219,8 @@ export default {
{
deviceType
:
12
,
deviceState
:
2
,
longitude
:
114.
14600224331788
,
latitude
:
38.
399070848235894
,
longitude
:
114.
08158936858243
,
latitude
:
38.
25068850682793
,
shortNum
:
12
,
title
:
"报警器"
,
sbmc
:
"气体报警器"
,
...
...
@@ -231,8 +231,8 @@ export default {
{
deviceType
:
12
,
deviceState
:
3
,
longitude
:
114.
14629336753252
,
latitude
:
38.
3993544427342
,
longitude
:
114.
08105373626017
,
latitude
:
38.
2510912127248
,
shortNum
:
12
,
title
:
"报警器"
,
sbmc
:
"气体报警器"
,
...
...
@@ -242,9 +242,9 @@ export default {
},
{
deviceType
:
13
,
longitude
:
114.
1462758282089
3
,
latitude
:
38.
3985068453153
,
shortNum
:
6
,
longitude
:
114.
0837595092425
3
,
latitude
:
38.
25066072012857
,
shortNum
:
8
,
title
:
"探测器"
,
sbmc
:
"电力探测器"
,
sbbh
:
"HBS030015032"
,
...
...
@@ -254,9 +254,9 @@ export default {
},
{
deviceType
:
14
,
longitude
:
114.
14621150048251
,
latitude
:
38.
3978928007328
6
,
shortNum
:
6
,
longitude
:
114.
08344461545148
,
latitude
:
38.
24981432804345
6
,
shortNum
:
8
,
title
:
"探测器"
,
sbmc
:
"压力探测器"
,
sbbh
:
"HBS030015037"
,
...
...
@@ -266,9 +266,9 @@ export default {
},
{
deviceType
:
14
,
longitude
:
114.
14626646534612
,
latitude
:
38.
3991036976397
1
,
shortNum
:
6
,
longitude
:
114.
08201936134395
,
latitude
:
38.
2501983331185
1
,
shortNum
:
8
,
title
:
"探测器"
,
sbmc
:
"压力探测器"
,
sbbh
:
"HBS030015037"
,
...
...
@@ -278,9 +278,9 @@ export default {
},
{
deviceType
:
15
,
longitude
:
114.
14636713813782
,
latitude
:
38.
3992058619738761
,
shortNum
:
6
,
longitude
:
114.
08274961653991
,
latitude
:
38.
24983876031178
,
shortNum
:
8
,
title
:
"探测器"
,
sbmc
:
"温度探测器"
,
sbbh
:
"HBS030015037"
,
...
...
@@ -316,7 +316,7 @@ export default {
beforeDestroy
()
{
// 挂掉该关的 infowindow 跟计算infowindow位置的计时器
this
.
Cesium
.
clearInfoWindow
();
this
.
Cesium
.
destroy
()
this
.
Cesium
.
destroy
()
;
},
methods
:
{
//进入此页面监听路由变化 让最顶上的东西隐藏
...
...
@@ -365,7 +365,7 @@ export default {
this
.
deviceOrDangerType
=
e
.
type
;
}
console
.
log
(
this
.
$refs
.
bottom
.
activeArr
);
this
.
Cesium
.
dangeDeviceChange
(
e
.
type
,
this
.
$refs
.
bottom
.
activeArr
);
this
.
Cesium
.
dangeDeviceChange
(
e
.
type
,
this
.
$refs
.
bottom
.
activeArr
);
},
// DeviceChange(){
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment