51timapi
Version:
TimApi is a traffic related plugin for WdpApi.
11 lines (10 loc) • 420 B
TypeScript
import { EntityEidType, BasicInfoAtomType, IPointValueAtom } from '../data-type';
export interface SpaceHeatMapEntityAtomType {
brushDiameter: number;
mappingValueRange: Array<number>;
gradientSetting: Array<string>;
}
export interface SpaceHeatMapType extends EntityEidType, Partial<BasicInfoAtomType> {
spaceHeatMapStyle?: Partial<SpaceHeatMapEntityAtomType>;
points?: IPointValueAtom;
}