Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
cesium-frame
Overview
Overview
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
jlc
cesium-frame
Commits
a303f71e
Commit
a303f71e
authored
Aug 01, 2024
by
jlc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update:坐标轴案例代码结构的修改
parent
3fbf5d33
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
71 additions
and
67 deletions
+71
-67
coordinateAxis-function.js
...es/movingTarget/coordinateAxis/coordinateAxis-function.js
+46
-64
coordinateAxis.vue
src/examples/movingTarget/coordinateAxis/coordinateAxis.vue
+25
-3
No files found.
src/examples/movingTarget/coordinateAxis/coordinateAxis-function.js
View file @
a303f71e
export
function
addCoordinateAxis
()
{
export
function
addCoordinateAxis
(
viewer
)
{
const
script
=
document
.
createElement
(
'script'
);
const
czml
=
[
script
.
src
=
'https://cesium.com/downloads/cesiumjs/releases/1.99/Build/Cesium/Cesium.js'
;
{
script
.
onload
=
()
=>
{
id
:
"document"
,
window
.
Cesium
.
Ion
.
defaultAccessToken
=
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI3Njg4ZWU5Yi1iZDhiLTRhYmUtOTRiYS04YjM5NmUwNjVmMDMiLCJpZCI6MjI3MzQ3LCJpYXQiOjE3MjA1MjA4Mjh9.E5XW4LnwgfVAaBC-znaYr61m4yK0-j2qEQhi9qwFFPE'
name
:
"SpaceX"
,
version
:
"1.0"
,
const
viewer
=
new
window
.
Cesium
.
Viewer
(
'cesiumContainer'
,
{
clock
:
{
infoBox
:
false
,
interval
:
"2019-08-28T04:00:00Z/2019-08-28T04:20:00Z"
,
shouldAnimate
:
true
currentTime
:
"2019-08-28T04:00:00.00Z"
,
});
multiplier
:
1
,
range
:
"LOOP_STOP"
,
const
czml
=
[
step
:
"SYSTEM_CLOCK_MULTIPLIER"
{
}
id
:
"document"
,
},
name
:
"SpaceX"
,
{
version
:
"1.0"
,
id
:
"point"
,
clock
:
{
name
:
"point"
,
interval
:
"2019-08-28T04:00:00Z/2019-08-28T04:20:00Z"
,
position
:
{
currentTime
:
"2019-08-28T04:00:00.00Z"
,
cartographicDegrees
:
[
120.0
,
30.0
,
0
],
multiplier
:
1
,
range
:
"LOOP_STOP"
,
step
:
"SYSTEM_CLOCK_MULTIPLIER"
}
},
},
{
point
:
{
id
:
"point"
,
color
:
{
name
:
"point"
,
rgba
:
[
255
,
255
,
255
,
255
],
position
:
{
cartographicDegrees
:
[
120.0
,
30.0
,
0
],
},
point
:
{
color
:
{
rgba
:
[
255
,
255
,
255
,
255
],
},
outlineColor
:
{
rgba
:
[
255
,
0
,
0
,
255
],
},
outlineWidth
:
4
,
pixelSize
:
20
,
},
},
},
];
outlineColor
:
{
rgba
:
[
255
,
0
,
0
,
255
],
var
dataSourcePromise
=
viewer
.
dataSources
.
add
(
Cesium
.
CzmlDataSource
.
load
(
czml
));
},
dataSourcePromise
.
then
(
function
(
dataSource
)
{
outlineWidth
:
4
,
// 根据模型所在的实体去进行加载
pixelSize
:
20
,
viewer
.
trackedEntity
=
dataSource
.
entities
.
getById
(
'point'
);
},
},
let
matrix
=
viewer
.
trackedEntity
?.
computeModelMatrix
(
Cesium
.
JulianDate
.
fromIso8601
(
'2019-08-28T04:00:00.00Z'
))
];
// 通过调试的实体来绘制模型坐标轴
viewer
.
scene
.
primitives
.
add
(
new
Cesium
.
DebugModelMatrixPrimitive
({
// 加载模型偏移矩阵的图元
modelMatrix
:
matrix
,
// 设置偏移矩阵
length
:
100000
,
width
:
10
})
);
}).
catch
(
function
(
error
)
{
console
.
error
(
error
);
});
};
var
dataSourcePromise
=
viewer
.
dataSources
.
add
(
Cesium
.
CzmlDataSource
.
load
(
czml
));
document
.
head
.
appendChild
(
script
);
dataSourcePromise
.
then
(
function
(
dataSource
)
{
// 根据模型所在的实体去进行加载
viewer
.
trackedEntity
=
dataSource
.
entities
.
getById
(
'point'
);
const
link
=
document
.
createElement
(
'link'
);
let
matrix
=
viewer
.
trackedEntity
?.
computeModelMatrix
(
Cesium
.
JulianDate
.
fromIso8601
(
'2019-08-28T04:00:00.00Z'
))
link
.
rel
=
'stylesheet'
;
// 通过调试的实体来绘制模型坐标轴
link
.
href
=
'https://cesium.com/downloads/cesiumjs/releases/1.119/Build/Cesium/Widgets/widgets.css'
;
viewer
.
scene
.
primitives
.
add
(
document
.
head
.
appendChild
(
link
);
new
Cesium
.
DebugModelMatrixPrimitive
({
// 加载模型偏移矩阵的图元
modelMatrix
:
matrix
,
// 设置偏移矩阵
length
:
100000
,
width
:
10
})
);
}).
catch
(
function
(
error
)
{
console
.
error
(
error
);
});
}
}
src/examples/movingTarget/coordinateAxis/coordinateAxis.vue
View file @
a303f71e
<
template
>
<
template
>
<div
id=
"cesiumContainer"
class=
"cesium-container"
></div>
<div
id=
"cesiumContainer"
class=
"cesium-container"
></div>
</
template
>
</
template
>
<
script
setup
>
<
script
setup
>
import
{
onMounted
}
from
'vue'
;
import
{
onMounted
}
from
'vue'
;
import
{
addCoordinateAxis
}
from
'./function'
;
import
{
addCoordinateAxis
}
from
'./function'
;
let
viewer
;
onMounted
(()
=>
{
onMounted
(()
=>
{
addCoordinateAxis
()
const
script
=
document
.
createElement
(
'script'
);
script
.
src
=
'https://cesium.com/downloads/cesiumjs/releases/1.99/Build/Cesium/Cesium.js'
;
script
.
onload
=
()
=>
{
window
.
Cesium
.
Ion
.
defaultAccessToken
=
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI3Njg4ZWU5Yi1iZDhiLTRhYmUtOTRiYS04YjM5NmUwNjVmMDMiLCJpZCI6MjI3MzQ3LCJpYXQiOjE3MjA1MjA4Mjh9.E5XW4LnwgfVAaBC-znaYr61m4yK0-j2qEQhi9qwFFPE'
viewer
=
new
window
.
Cesium
.
Viewer
(
'cesiumContainer'
,
{
infoBox
:
false
,
shouldAnimate
:
true
});
addCoordinateAxis
(
viewer
)
};
document
.
head
.
appendChild
(
script
);
const
link
=
document
.
createElement
(
'link'
);
link
.
rel
=
'stylesheet'
;
link
.
href
=
'https://cesium.com/downloads/cesiumjs/releases/1.119/Build/Cesium/Widgets/widgets.css'
;
document
.
head
.
appendChild
(
link
);
});
});
</
script
>
</
script
>
<
style
>
<
style
>
.cesium-container
{
.cesium-container
{
width
:
100%
;
width
:
100%
;
height
:
100vh
;
height
:
100vh
;
}
}
</
style
>
</
style
>
\ No newline at end of file
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