@orca-fe/x-map
Version:
12 lines (11 loc) • 372 B
TypeScript
import BaseMarker, { BaseMarkerOptions } from './BaseMarker';
import { Point } from '../../defs';
export interface PointOptions extends BaseMarkerOptions {
translateX?: string;
translateY?: string;
color?: string;
size?: string;
}
export default class PointMarker extends BaseMarker {
constructor(position: Point, options?: PointOptions);
}