@mappable-world/mappable-types 1.0.16662021 → 1.0.16731241
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { Context } from "./Entities";
|
|
2
2
|
import type { MAP_TYPES } from "./MMapDefaultSchemeLayer";
|
|
3
|
-
export type MMapType = keyof typeof MAP_TYPES;
|
|
4
|
-
export type MMapTypeContext = {
|
|
5
|
-
type?: MMapType;
|
|
6
|
-
};
|
|
7
3
|
/**
|
|
8
4
|
* Selects one of predefined map style modes optimized for particular use case. The following values are supported:
|
|
9
|
-
* * `map` - basic map
|
|
5
|
+
* * `map` - basic map (by default)
|
|
6
|
+
* * `future-map` - the base map with the new design
|
|
10
7
|
* * `driving` - automobile navigation map
|
|
11
8
|
* * `transit` - public transport map
|
|
12
9
|
* * `admin` - administrative map
|
|
13
10
|
*/
|
|
11
|
+
export type MMapType = keyof typeof MAP_TYPES;
|
|
12
|
+
export type MMapTypeContext = {
|
|
13
|
+
type?: MMapType;
|
|
14
|
+
};
|
|
14
15
|
export declare const TypeContext: Context<MMapTypeContext>;
|