import { CesiumTypes, PointStyle, Viewer } from "../type"; import { ForwardPath } from "./forwardPath"; export class FirefightPath extends ForwardPath { constructor(cesium: CesiumTypes, viewer: Viewer, style: PointStyle) { super(cesium, viewer, 0, style); this.icon = '△' } }