Files
universal_is/client/src/interfaces/map.ts
2024-12-10 10:51:29 +09:00

12 lines
331 B
TypeScript

import { Coordinate } from "ol/coordinate";
export type SatelliteMapsProvider = 'google' | 'yandex' | 'custom' | 'static'
export type IGeometryType = 'LINE' | 'POLYGON'
export interface IRectCoords {
bl: Coordinate | undefined,
tl: Coordinate | undefined,
tr: Coordinate | undefined,
br: Coordinate | undefined
}