51timapi
Version:
TimApi is a traffic related plugin for WdpApi.
14 lines (13 loc) • 522 B
TypeScript
import { MinMaxType, Coord2DType, EntityEidType, BasicInfoAtomType, TransformAtomType } from '../data-type';
export interface PoiType extends EntityEidType, Partial<BasicInfoAtomType>, Partial<TransformAtomType> {
poiStyle?: Partial<PoiEntityAtomType>;
}
export interface PoiEntityAtomType {
markerNormalUrl: string;
markerActivateUrl: string;
markerSize: MinMaxType;
labelBgImageUrl: string;
labelBgSize: MinMaxType;
labelBgOffset: Coord2DType;
labelContent: Array<string>;
}