Skip to content

Commit

Permalink
fix: 注释掉点点动画
Browse files Browse the repository at this point in the history
  • Loading branch information
lzxue committed Dec 11, 2023
1 parent f54a228 commit 2235c78
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions dev-demos/features/line/demos/lineArcPlane.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default () => {
useEffect(() => {
const scene = new Scene({
id: 'map',
renderer: process.env.renderer,
renderer: process.env.renderer,
map: new GaodeMap({
pitch: 40,
center: [ 40, 40.16797 ],
Expand Down Expand Up @@ -63,7 +63,7 @@ export default () => {
})
.shape('circle')
.color('#ffed11')
.animate(true)
// .animate(true)
.size(40);
const flyLine = new LineLayer({ blend: 'normal' })
.source(flydata, {
Expand Down Expand Up @@ -102,10 +102,10 @@ export default () => {
dashArray: [ 5, 5 ],
opacity: 0.5
});
scene.addLayer(worldLine);
// scene.addLayer(worldLine);
scene.addLayer(dotPoint);
scene.addLayer(flyLine2);
scene.addLayer(flyLine);
// scene.addLayer(flyLine2);
// scene.addLayer(flyLine);
});
});
}, []);
Expand Down

0 comments on commit 2235c78

Please sign in to comment.