UNPKG

51timapi

Version:

TimApi is a traffic related plugin for WdpApi.

12 lines (11 loc) 462 B
import { EntityEidType, EntityGeometryType, BasicInfoAtomType, TransformAtomType } from '../data-type'; export interface ViewshedType extends EntityEidType, EntityGeometryType, Partial<BasicInfoAtomType>, Partial<TransformAtomType> { viewshedStyle?: Partial<ViewShedEntityAtomType>; } export interface ViewShedEntityAtomType { visibleColor: string; hiddenColor: string; outline: boolean; fieldOfView: number; radius: number; }