本文整理汇总了TypeScript中cesium/Cesium.Cartesian3类的典型用法代码示例。如果您正苦于以下问题:TypeScript Cartesian3类的具体用法?TypeScript Cartesian3怎么用?TypeScript Cartesian3使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Cartesian3类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: createAvatar
createAvatar(model:any) {
const polylineEntity = this.target.add({
polyline : {
positions : Cesium.Cartesian3.fromDegreesArray(this.resolvePositions(model)),
width : this.resolveWidth(model),
material : new Cesium.ColorMaterialProperty(this.resolveColor(model))
}
});
const update = (model:any) => {
const points = this.resolvePositions(model);
const cesiumPoints = Cesium.Cartesian3.fromDegreesArray(points);
polylineEntity.polyline.positions.setValue(cesiumPoints);
polylineEntity.polyline.material.color.setValue(this.resolveColor(model));
polylineEntity.polyline.width.setValue(this.resolveWidth(model));
};
const remove = () => {
this.target.remove(polylineEntity);
};
const primitiveId = () => {
return polylineEntity.id;
}
return {remove, update, primitiveId};
}
示例2: createAvatar
createAvatar(model:any) {
const billboard = {
image: this.resolveImage(model),
color: this.resolveColor(model),
width: this.resolveWidth(model),
height: this.resolveHeight(model),
};
const points = this.resolvePosition(model);
const billboardEntity = this.target.add({
position: Cesium.Cartesian3.fromDegrees(...points),
billboard,
});
const update = (model: any) => {
const points = this.resolvePosition(model);
const cesiumPoints = Cesium.Cartesian3.fromDegrees(...points);
billboardEntity.position.setValue(cesiumPoints);
billboardEntity.billboard.image.setValue(this.resolveImage(model));
billboardEntity.billboard.color.setValue(this.resolveColor(model));
billboardEntity.billboard.width.setValue(this.resolveWidth(model));
billboardEntity.billboard.height.setValue(this.resolveHeight(model));
};
const remove = () => {
this.target.remove(billboardEntity);
};
const primitiveId = () => {
return billboardEntity.id;
}
return {remove, update, primitiveId};
}
示例3:
const update = (model:any) => {
const points = this.resolvePositions(model);
const cesiumPoints = Cesium.Cartesian3.fromDegreesArray(points);
polylineEntity.polyline.positions.setValue(cesiumPoints);
polylineEntity.polyline.material.color.setValue(this.resolveColor(model));
polylineEntity.polyline.width.setValue(this.resolveWidth(model));
};
示例4:
const update = (model: any) => {
const points = this.resolvePosition(model);
const cesiumPoints = Cesium.Cartesian3.fromDegrees(...points);
billboardEntity.position.setValue(cesiumPoints);
billboardEntity.billboard.image.setValue(this.resolveImage(model));
billboardEntity.billboard.color.setValue(this.resolveColor(model));
billboardEntity.billboard.width.setValue(this.resolveWidth(model));
billboardEntity.billboard.height.setValue(this.resolveHeight(model));
};