projects/angular-cesium/src/lib/angular-cesium-widgets/models/hippodrome-edit-update.ts
        
| Properties | 
| 
 | 
| draggedPosition | 
| draggedPosition:      | 
| Type : Cartesian3 | 
| Optional | 
| hippodromeOptions | 
| hippodromeOptions:      | 
| Type : HippodromeEditOptions | 
| Optional | 
| points | 
| points:      | 
| Type : EditPoint[] | 
| Optional | 
| positions | 
| positions:      | 
| Type : Cartesian3[] | 
| Optional | 
| updatedPoint | 
| updatedPoint:      | 
| Type : EditPoint | 
| Optional | 
| updatedPosition | 
| updatedPosition:      | 
| Type : Cartesian3 | 
| Optional | 
| width | 
| width:      | 
| Type : number | 
| Optional | 
import { EditPoint } from './edit-point';
import { Cartesian3 } from '../../angular-cesium/models/cartesian3';
import { BasicEditUpdate } from './basic-edit-update';
import { HippodromeEditOptions } from './hippodrome-edit-options';
export interface HippodromeEditUpdate extends BasicEditUpdate<HippodromeEditUpdate> {
  positions?: Cartesian3[];
  updatedPosition?: Cartesian3;
  draggedPosition?: Cartesian3;
  points?: EditPoint[];
  width?: number; // meters
  updatedPoint?: EditPoint;
  hippodromeOptions?: HippodromeEditOptions;
}