Remove @mui, move states into zustand store

This commit is contained in:
cracklesparkle
2024-12-10 10:51:29 +09:00
parent e9595f9703
commit eeae97288a
27 changed files with 537 additions and 2079 deletions

View File

@ -1,18 +1,8 @@
import { Coordinate } from "ol/coordinate";
export interface SatelliteMapsProviders {
google: 'google';
yandex: 'yandex';
custom: 'custom';
}
export type SatelliteMapsProvider = SatelliteMapsProviders[keyof SatelliteMapsProviders]
export type SatelliteMapsProvider = 'google' | 'yandex' | 'custom' | 'static'
export interface IGeometryTypes {
LINE: 'LINE'
POLYGON: 'POLYGON'
}
export type IGeometryType = IGeometryTypes[keyof IGeometryTypes]
export type IGeometryType = 'LINE' | 'POLYGON'
export interface IRectCoords {
bl: Coordinate | undefined,