11 lines
247 B
TypeScript
11 lines
247 B
TypeScript
import { MapSettings } from "./map-widget-context.interface";
|
|
|
|
export const zeroCoordinates = { lat: 0, lon: 0 };
|
|
|
|
export const EMPTY_SETTING_VALUE: MapSettings = {
|
|
rotateAngle: 0,
|
|
center: zeroCoordinates,
|
|
fullScale: 0,
|
|
zoomedScale: 0,
|
|
};
|