51timapi
Version:
TimApi is a traffic related plugin for WdpApi.
13 lines (12 loc) • 464 B
TypeScript
import { MinMaxType, EntityEidType, BasicInfoAtomType, IPointValueAtom } from '../data-type';
export interface RoadHeatMapType extends EntityEidType, Partial<BasicInfoAtomType> {
roadHeatMapStyle?: Partial<RoadHeatMapEntityAtomType>;
points?: IPointValueAtom;
}
export interface RoadHeatMapEntityAtomType {
type: string;
width: number;
mappingValueRange: MinMaxType;
gradientSetting: Array<string>;
filter: Array<string>;
}