File

projects/angular-cesium/src/lib/angular-cesium-widgets/models/polyline-edit-options.ts

Extends

EditorEditOptions

Index

Properties

Properties

addLastPointEvent
addLastPointEvent: CesiumEvent
Type : CesiumEvent
Optional
addLastPointModifier
addLastPointModifier: CesiumEventModifier
Type : CesiumEventModifier
Optional
clampHeightTo3D
clampHeightTo3D: boolean
Type : boolean
Optional
clampHeightTo3DOptions
clampHeightTo3DOptions: ClampTo3DOptions
Type : ClampTo3DOptions
Optional
maximumNumberOfPoints
maximumNumberOfPoints: number
Type : number
Optional
removePointEvent
removePointEvent: CesiumEvent
Type : CesiumEvent
Optional
removePointModifier
removePointModifier: CesiumEventModifier
Type : CesiumEventModifier
Optional
import { CesiumEvent } from '../../angular-cesium/services/map-events-mananger/consts/cesium-event.enum';
import { CesiumEventModifier } from '../../angular-cesium/services/map-events-mananger/consts/cesium-event-modifier.enum';
import { EditorEditOptions } from './editor-edit-options';

export interface ClampTo3DOptions {
  clampToTerrain?: boolean;
  clampMostDetailed?: boolean;
  clampToHeightPickWidth?: number;
}

export interface PolylineProps {
  width?: number;
  material?: Function;

  clampToGround?: boolean;
  zIndex?: number;
  classificationType?: any;
  useGroundPrimitiveOutline?: boolean;
}

export interface PolylineEditOptions extends EditorEditOptions {
  addLastPointEvent?: CesiumEvent;
  addLastPointModifier?: CesiumEventModifier;
  removePointEvent?: CesiumEvent;
  removePointModifier?: CesiumEventModifier;
  maximumNumberOfPoints?: number;
  clampHeightTo3D?: boolean;
  clampHeightTo3DOptions?: ClampTo3DOptions;
}

result-matching ""

    No results matching ""