12345678910111213141516171819202122 |
- interface MouseTool {
- color?: string;
- lineWidth?: string;
- drawType?: string;
- graphicsType: string;
- text?: string;
- fontSize?: string;
- fontColor?: string;
- lnglat?: string[];
- title?: string;
- icon?: string;
- size?: number[];
- }
- interface MapState {
- center: number[];
- zoom: number;
- minZoom: number;
- maxZoom: number;
- isThreeDimensional: boolean;
- showScale: boolean;
- }
|