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