import { IGPSOption } from './IGPSOption'; import { IMarkerIcon } from './IMarkerIcon'; export interface IMyLocationAnimate { color: string; opacity: number; desireScale: number; duration: number; repeat?: number; } export interface IMyLocOption { x: number; y: number; iconOption?: Partial; onActive?: boolean; animate?: Partial; gpsOption?: Partial; floorId?: string; }