Object data

This commit is contained in:
cracklesparkle
2024-11-26 18:00:18 +09:00
parent a4513e7e7a
commit bd0a317e76
17 changed files with 1517 additions and 719 deletions

View File

@ -1,3 +1,5 @@
import { Coordinate } from "ol/coordinate";
export interface SatelliteMapsProviders {
google: 'google';
yandex: 'yandex';
@ -11,3 +13,10 @@ export interface IGeometryTypes {
}
export type IGeometryType = IGeometryTypes[keyof IGeometryTypes]
export interface IRectCoords {
bl: Coordinate | undefined,
tl: Coordinate | undefined,
tr: Coordinate | undefined,
br: Coordinate | undefined
}