36 lines
942 B
JavaScript
36 lines
942 B
JavaScript
import { Fragment } from "react";
|
|
import { Cartesian3 } from "cesium";
|
|
import LabelEntity from "./LabelEtity";
|
|
|
|
export default function Labels() {
|
|
return (
|
|
<Fragment>
|
|
<LabelEntity
|
|
showTime={1}
|
|
text={"5月南极涛动"}
|
|
position={Cartesian3.fromDegrees(-110, -60, 0)}
|
|
/>
|
|
<LabelEntity
|
|
showTime={9}
|
|
text={"源自阿蒙森海的纬向波列异常"}
|
|
position={Cartesian3.fromDegrees(11, -65, 0)}
|
|
/>
|
|
<LabelEntity
|
|
showTime={22}
|
|
text={"印度洋海温降低"}
|
|
position={Cartesian3.fromDegrees(73, -7, 0)}
|
|
/>
|
|
<LabelEntity
|
|
showTime={26}
|
|
text={"局地环流异常"}
|
|
position={Cartesian3.fromDegrees(84, 15, 0)}
|
|
/>
|
|
<LabelEntity
|
|
showTime={30}
|
|
text={"高原上空降水增加、感热通量降低"}
|
|
position={Cartesian3.fromDegrees(95, 28, 0)}
|
|
/>
|
|
</Fragment>
|
|
);
|
|
}
|