mirror of
https://github.com/ethan-zf/cesium-plot-js.git
synced 2025-06-24 11:37:27 +00:00
28 lines
845 B
TypeScript
28 lines
845 B
TypeScript
import FineArrow from './arrow/fine-arrow';
|
|
import AttackArrow from './arrow/attack-arrow';
|
|
import SwallowtailAttackArrow from './arrow/swallowtail-attack-arrow';
|
|
import SquadCombat from './arrow/squad-combat';
|
|
import SwallowtailSquadCombat from './arrow/swallowtail-squad-combat';
|
|
import StraightArrow from './arrow/straight-arrow';
|
|
import CurvedArrow from './arrow/curved-arrow';
|
|
import AssaultDirection from './arrow/assault-direction';
|
|
import DoubleArrow from './arrow/double-arrow';
|
|
import FreehandLine from './line/freehand-line';
|
|
import FreehandPolygon from './polygon/freehand-polygon';
|
|
|
|
const CesiumPlot = {
|
|
FineArrow,
|
|
AttackArrow,
|
|
SwallowtailAttackArrow,
|
|
SquadCombat,
|
|
SwallowtailSquadCombat,
|
|
StraightArrow,
|
|
CurvedArrow,
|
|
AssaultDirection,
|
|
DoubleArrow,
|
|
FreehandLine,
|
|
FreehandPolygon,
|
|
};
|
|
|
|
export default CesiumPlot;
|