Object data
This commit is contained in:
@ -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
|
||||
}
|
Reference in New Issue
Block a user