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
089a1df6
Commit
089a1df6
authored
Jul 24, 2024
by
jlc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update:添加面的案例
parent
9ac34232
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
104 additions
and
6 deletions
+104
-6
Plane.png
src/assets/Plane.png
+0
-0
CodeMap.js
src/examples/CodeMap.js
+2
-0
FunctionMap.js
src/examples/FunctionMap.js
+2
-0
plane-function.js
src/examples/plane-function.js
+71
-0
plane.vue
src/examples/plane.vue
+18
-0
ElementMap.js
src/views/ElementMap.js
+11
-6
No files found.
src/assets/Plane
One
.png
→
src/assets/Plane.png
View file @
089a1df6
File moved
src/examples/CodeMap.js
View file @
089a1df6
import
vueCodePoint
from
'@/examples/point.vue?raw'
import
vueCodePoint
from
'@/examples/point.vue?raw'
import
vueCodeLine
from
'@/examples/line.vue?raw'
import
vueCodeLine
from
'@/examples/line.vue?raw'
import
vueCodeMultiLine
from
'@/examples/multiLine.vue?raw'
import
vueCodeMultiLine
from
'@/examples/multiLine.vue?raw'
import
vueCodePlane
from
'@/examples/plane.vue?raw'
import
vueCodeCodeCirclesAndEllipses
from
'@/examples/circlesAndEllipses.vue?raw'
import
vueCodeCodeCirclesAndEllipses
from
'@/examples/circlesAndEllipses.vue?raw'
import
vueCodeRain
from
'@/examples/rain.vue?raw'
import
vueCodeRain
from
'@/examples/rain.vue?raw'
...
@@ -12,6 +13,7 @@ const vueCodeMap = {
...
@@ -12,6 +13,7 @@ const vueCodeMap = {
点
:
vueCodePoint
,
点
:
vueCodePoint
,
线
:
vueCodeLine
,
线
:
vueCodeLine
,
多颜色线
:
vueCodeMultiLine
,
多颜色线
:
vueCodeMultiLine
,
面
:
vueCodePlane
,
椭圆
:
vueCodeCodeCirclesAndEllipses
,
椭圆
:
vueCodeCodeCirclesAndEllipses
,
雨
:
vueCodeRain
,
雨
:
vueCodeRain
,
...
...
src/examples/FunctionMap.js
View file @
089a1df6
import
functionCodePoint
from
'@/examples/point-function.js?raw'
import
functionCodePoint
from
'@/examples/point-function.js?raw'
import
functionCodeLine
from
'@/examples/line-function.js?raw'
import
functionCodeLine
from
'@/examples/line-function.js?raw'
import
functionCodeMultiLine
from
'@/examples/multiLine-function.js?raw'
import
functionCodeMultiLine
from
'@/examples/multiLine-function.js?raw'
import
functionCodePlane
from
'@/examples/plane-function.js?raw'
import
functionCodeCirclesAndEllipses
from
'@/examples/circlesAndEllipses-function.js?raw'
import
functionCodeCirclesAndEllipses
from
'@/examples/circlesAndEllipses-function.js?raw'
import
functionCodeRain
from
'@/examples/rain-function.js?raw'
import
functionCodeRain
from
'@/examples/rain-function.js?raw'
...
@@ -12,6 +13,7 @@ const functionCodeMap = {
...
@@ -12,6 +13,7 @@ const functionCodeMap = {
点
:
functionCodePoint
,
点
:
functionCodePoint
,
线
:
functionCodeLine
,
线
:
functionCodeLine
,
多颜色线
:
functionCodeMultiLine
,
多颜色线
:
functionCodeMultiLine
,
面
:
functionCodePlane
,
椭圆
:
functionCodeCirclesAndEllipses
,
椭圆
:
functionCodeCirclesAndEllipses
,
雨
:
functionCodeRain
,
雨
:
functionCodeRain
,
...
...
src/examples/plane-function.js
0 → 100644
View file @
089a1df6
export
function
addPlane
()
{
const
script
=
document
.
createElement
(
'script'
);
script
.
src
=
'https://cesium.com/downloads/cesiumjs/releases/1.119/Build/Cesium/Cesium.js'
;
script
.
onload
=
()
=>
{
window
.
Cesium
.
Ion
.
defaultAccessToken
=
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI3Njg4ZWU5Yi1iZDhiLTRhYmUtOTRiYS04YjM5NmUwNjVmMDMiLCJpZCI6MjI3MzQ3LCJpYXQiOjE3MjA1MjA4Mjh9.E5XW4LnwgfVAaBC-znaYr61m4yK0-j2qEQhi9qwFFPE'
const
viewer
=
new
window
.
Cesium
.
Viewer
(
'cesiumContainer'
,
{
infoBox
:
false
,
});
const
czml
=
[
{
id
:
"document"
,
name
:
"CZML Colors"
,
version
:
"1.0"
,
},
{
id
:
"rgba"
,
name
:
"Rectangle with outline using RGBA Colors"
,
rectangle
:
{
coordinates
:
{
wsenDegrees
:
[
-
120
,
40
,
-
110
,
50
],
},
fill
:
true
,
material
:
{
solidColor
:
{
color
:
{
rgba
:
[
255
,
0
,
0
,
100
],
},
},
},
height
:
0
,
// disables ground clamping, needed for outlines
outline
:
true
,
outlineColor
:
{
rgba
:
[
0
,
0
,
0
,
255
],
},
},
},
{
id
:
"rgbaf"
,
name
:
"Rectangle using RGBAF Colors"
,
rectangle
:
{
coordinates
:
{
wsenDegrees
:
[
-
100
,
40
,
-
90
,
50
]
},
fill
:
true
,
material
:
{
solidColor
:
{
color
:
{
rgbaf
:
[
1
,
0
,
0
,
0.39
],
},
},
},
height
:
0
,
// disables ground clamping, needed for outlines
outline
:
true
,
outlineColor
:
{
rgba
:
[
0
,
0
,
0
,
255
],
},
},
},
];
const
dataSourcePromise
=
Cesium
.
CzmlDataSource
.
load
(
czml
);
viewer
.
dataSources
.
add
(
dataSourcePromise
);
viewer
.
zoomTo
(
dataSourcePromise
);
};
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
);
}
src/examples/plane.vue
0 → 100644
View file @
089a1df6
<
template
>
<div
id=
"cesiumContainer"
class=
"cesium-container"
></div>
</
template
>
<
script
setup
>
import
{
onMounted
}
from
'vue'
;
import
{
addPlane
}
from
'./function'
;
onMounted
(()
=>
{
addPlane
()
});
</
script
>
<
style
>
.cesium-container
{
width
:
100%
;
height
:
100vh
;
}
</
style
>
\ No newline at end of file
src/views/ElementMap.js
View file @
089a1df6
...
@@ -11,6 +11,10 @@ export const elementGraphicMap = {
...
@@ -11,6 +11,10 @@ export const elementGraphicMap = {
title
:
'多颜色线'
,
title
:
'多颜色线'
,
pngUrl
:
'/src/assets/MultiLine.png'
pngUrl
:
'/src/assets/MultiLine.png'
},
},
面
:
{
title
:
'面'
,
pngUrl
:
'/src/assets/Plane.png'
},
椭圆
:
{
椭圆
:
{
title
:
'椭圆'
,
title
:
'椭圆'
,
pngUrl
:
'/src/assets/CirclesAndEllipses.png'
pngUrl
:
'/src/assets/CirclesAndEllipses.png'
...
@@ -47,26 +51,26 @@ export const elementWeatherMap = {
...
@@ -47,26 +51,26 @@ export const elementWeatherMap = {
export
const
elementPlaneMap
=
{
export
const
elementPlaneMap
=
{
One
:
{
One
:
{
title
:
'planeOne'
,
title
:
'planeOne'
,
pngUrl
:
'/src/assets/Plane
One
.png'
pngUrl
:
'/src/assets/Plane.png'
},
},
Two
:
{
Two
:
{
title
:
'planeTwo'
,
title
:
'planeTwo'
,
pngUrl
:
'/src/assets/Plane
One
.png'
pngUrl
:
'/src/assets/Plane.png'
},
},
Three
:
{
Three
:
{
title
:
'planeThree'
,
title
:
'planeThree'
,
pngUrl
:
'/src/assets/Plane
One
.png'
pngUrl
:
'/src/assets/Plane.png'
},
},
Four
:
{
Four
:
{
title
:
'planeFour'
,
title
:
'planeFour'
,
pngUrl
:
'/src/assets/Plane
One
.png'
pngUrl
:
'/src/assets/Plane.png'
},
},
Five
:
{
Five
:
{
title
:
'planeFive'
,
title
:
'planeFive'
,
pngUrl
:
'/src/assets/Plane
One
.png'
pngUrl
:
'/src/assets/Plane.png'
},
},
Six
:
{
Six
:
{
title
:
'planeSix'
,
title
:
'planeSix'
,
pngUrl
:
'/src/assets/Plane
One
.png'
pngUrl
:
'/src/assets/Plane.png'
}
}
}
}
\ 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