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