一、依赖安装
echarts安装
npm install echarts
echarts–gl 安装
npm install echarts-gl
使用
全部使用
import * as echarts from 'echarts';
import 'echarts-gl';
按需使用
import * as echarts from 'echarts/core';
import { Scatter3DChart } from 'echarts-gl/charts';
import { Grid3DComponent } from 'echarts-gl/components';
echarts.use([Scatter3DChart, Grid3DComponent]);
二、地球自转实现
globe: {
show: true,
globeRadius: 80,
baseTexture: "img/world.jpg",
heightTexture: "img/world.jpg",
displacementScale: 0.04,
environment: "img/starfield.jpg",
shading: "realistic",
realisticMaterial: {
roughness: 0.9,
},
viewControl: {
autoRotate: true,
autoRotateAfterStill: 3,
distance: 300,
maxDistance: 800,
damping: 0,
},
postEffect: {
enable: true,
},
light: {
main: {
intensity: 5,
shadow: true,
},
ambientCubemap: {
texture: "img/pisa.hdr",
diffuseIntensity: 0.2,
},
},
}
三、卫星图标实现
卫星环绕效果通过scatter3D实现,将symbolSize设置为0,通过label–textStyle-backgroundColor–image设置卫星图片,代码如下:
{
type: "scatter3D",
coordinateSystem: "globe",
data: [[12, 14, 10]],
symbolSize: 0,
label: {
show: true,
position: "top",
distance: -20,
formatter(params) {
return "卫星";
},
textStyle: {
color: "transparent",
padding: [15, 20],
backgroundColor: {
image: "./img/weixing.png",
},
},
}
},
{
type: "scatter3D",
coordinateSystem: "globe",
data: [[12, 14, 10]],
symbolSize: 0,
label: {
show: true,
clickable: true,
position: "bottom",
distance: 0,
formatter(params) {
return "卫星";
},
textStyle: {
color: "yellow",
padding: [15, 20],
backgroundColor: "transparent",
},
},
}
总结
卫星伴随地球自转,缺点在于速度与地球相同,暂时未找到更好的替代方法。
完整代码可进github中下载:完整代码
原文地址:https://blog.csdn.net/weixin_42471898/article/details/128844059
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_46174.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。