当前位置:网站首页>cesium rotate image
cesium rotate image
2022-08-10 05:48:00 【Why can't I get enough to eat?】
The function implementation refers to this big guy:
Main code:
// Add model parameters are longitude, latitude, altitudeaddPic(longitude, latitude, altitude) {var entity = viewer.entities.add({// Cesium.Cartesian3.fromDegrees latitude and longitude converted to world coordinatesposition: Cesium.Cartesian3.fromDegrees(longitude, latitude, altitude),ellipse: {semiMinorAxis: 1000.0,semiMajorAxis: 1000.0,material: Cesium.Color.YELLOW.withAlpha(0.5)}});viewer.zoomTo(viewer.entities);var ellipse = entity.ellipse;ellipse.material = new Cesium.ImageMaterialProperty({//map to imageimage: require("../assets/logo.png"), //Resource addresscolor: Cesium.Color.LIGHTCYAN, //background colorrepeat: new Cesium.Cartesian2(1, 1) //Number of times to repeat in the x,y direction});// rotate effectthis.rotateMaterial(entity.ellipse, 0, 1);}/*** @description: rotate material* @param {*} instance : entity* @param {*} _stRotation : initial material rotation angle* @param {*} _amount : amount of rotation angle change* @return {*}*/rotateMaterial(instance, _stRotation, _amount) {instance.stRotation = new Cesium.CallbackProperty(function() {_stRotation += _amount;if (_stRotation >= 360 || _stRotation <= -360) {_stRotation = 0;}return Cesium.Math.toRadians(_stRotation);}, false);},边栏推荐
猜你喜欢
随机推荐
Pony语言学习(七)——表达式(Expressions)语法(单篇向)
先人一步,不再错过,链读APP即将上线!
深度学习中的学习率调整策略(1)
cesium 监听地图缩放或放大来控制地图上添加的内容是否展示
Linux database Oracle client installation, used for shell scripts to connect to the database with sqlplus
Chain Reading|The latest and most complete digital collection sales calendar-07.29
【论文笔记1】小样本分类
Four characteristics of ACID
view【】【】【】【】
各个架构指令集对应的机型
文章复现:SRCNN
transaction, storage engine
PCL,VS配置过程中出现:用 _sopen_s 代替 _open, 或用_CRT_SECURE_NO_WARNNINGS错误
kaggle小白必看:小白常见的2个错误解决方案
使用Google Protobuf 在 Matlab 中工作
Batch add watermark to pictures batch scale pictures to specified size
Tkinter 入门之旅
图纸怎么折?(A0,A1,A2,A3の图纸如何折成A4大小)
CSDN Markdown 之我见代码块 | CSDN编辑器测评
【写下自用】每次都忘记如何train?记录如何训练自己的yolov5









