32 lines
827 B
TypeScript
32 lines
827 B
TypeScript
export declare const mapboxAccessToken = "pk.eyJ1IjoiZGluZ2xpMTIzIiwiYSI6ImNra204ODhjczBobTgyeHJ6MmJpZHMxNWgifQ.NbKrXh_hb2gvjr5CEMDnyQ";
|
|
export declare const MAP_CENTER: {
|
|
longitude: number;
|
|
latitude: number;
|
|
};
|
|
export declare const defaultMapConfig: {
|
|
mapboxAccessToken: string;
|
|
maxZoom: number;
|
|
minZoom: number;
|
|
dragRotate: boolean;
|
|
mapStyle: {
|
|
version: number;
|
|
name: string;
|
|
glyphs: string;
|
|
sources: {
|
|
'osm-tiles': {
|
|
type: string;
|
|
tiles: string[];
|
|
tileSize: number;
|
|
};
|
|
};
|
|
layers: {
|
|
id: string;
|
|
type: string;
|
|
source: string;
|
|
minZoom: number;
|
|
maxZoom: number;
|
|
renderingMode: string;
|
|
}[];
|
|
};
|
|
};
|