mgtypes 1.0.102 → 1.0.103
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.
package/package.json
CHANGED
|
@@ -76,12 +76,6 @@ export interface mgPlaceholdersConfig {
|
|
|
76
76
|
*/
|
|
77
77
|
export interface mgMapConfig {
|
|
78
78
|
MAP_BILLBOARDS: mgMapBillboards;
|
|
79
|
-
DEFAULT_MAP_CAMERA: {
|
|
80
|
-
centerCoordinate: Position;
|
|
81
|
-
zoomLevel: number;
|
|
82
|
-
pitch?: number;
|
|
83
|
-
heading?: number;
|
|
84
|
-
};
|
|
85
79
|
mapStyleURL: string | null;
|
|
86
80
|
}
|
|
87
81
|
|
|
@@ -384,7 +378,16 @@ export interface mgProfilesConfig {
|
|
|
384
378
|
|
|
385
379
|
interface mgProfileConfig {
|
|
386
380
|
PERMISSIONS: mgPermissionsProfile;
|
|
387
|
-
|
|
381
|
+
|
|
382
|
+
MAP: {
|
|
383
|
+
MAP_FILTERS: mgMapFiltersProfile;
|
|
384
|
+
DEFAULT_CAMERA: {
|
|
385
|
+
centerCoordinate: Position;
|
|
386
|
+
zoomLevel: number;
|
|
387
|
+
pitch?: number;
|
|
388
|
+
heading?: number;
|
|
389
|
+
};
|
|
390
|
+
}
|
|
388
391
|
}
|
|
389
392
|
|
|
390
393
|
export interface mgPermissionsProfile {
|