Revert "1"

This reverts commit 858e2ff33d.
pull/3/head
fangjiakai 2024-02-28 10:49:36 +08:00
parent 858e2ff33d
commit c33eaadd63
1 changed files with 3 additions and 7 deletions

View File

@ -336,18 +336,14 @@ const addEntity = (id, name, lon, lat, height) => {
export const handleViewAlarm = (alarm, userList) => { export const handleViewAlarm = (alarm, userList) => {
const canvas = document.createElement("canvas"); const canvas = document.createElement("canvas");
const width = 100; canvas.width = 100;
const height = 30; canvas.height = 30;
canvas.width = width;
canvas.height = height;
const ctx = canvas.getContext("2d"); const ctx = canvas.getContext("2d");
ctx.fillStyle = "#000000"; ctx.fillStyle = "#000000";
ctx.fillRect(0, 0, 100, 50); ctx.fillRect(0, 0, 100, 50);
ctx.fillStyle = "#ff0000"; ctx.fillStyle = "#ff0000";
ctx.font = "normal bold 20px Arial"; ctx.font = "normal bold 20px Arial";
ctx.textAlign = "center"; ctx.fillText("聚集告警", 5, 15);
ctx.textBaseline = "middle";
ctx.fillText("聚集告警", width / 2, height / 2);
// 聚集圆锥特效 // 聚集圆锥特效
const Cone = new window.CustomCesium.Cone(window.$icy); const Cone = new window.CustomCesium.Cone(window.$icy);