@arenarium/maps 1.0.140 → 1.0.142
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/dist/index.d.ts +16 -1
- package/dist/index.js +2 -2
- package/dist/main.cjs.js +2 -2
- package/dist/main.d.ts +16 -1
- package/dist/main.es.js +606 -597
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -40,6 +40,13 @@ declare const mapConfigurationSchema: z.ZodObject<{
|
|
|
40
40
|
}, {
|
|
41
41
|
api?: string | undefined;
|
|
42
42
|
}>>;
|
|
43
|
+
log: z.ZodOptional<z.ZodObject<{
|
|
44
|
+
api: z.ZodOptional<z.ZodString>;
|
|
45
|
+
}, "strip", z.ZodTypeAny, {
|
|
46
|
+
api?: string | undefined;
|
|
47
|
+
}, {
|
|
48
|
+
api?: string | undefined;
|
|
49
|
+
}>>;
|
|
43
50
|
}, "strip", z.ZodTypeAny, {
|
|
44
51
|
pin?: {
|
|
45
52
|
fade?: boolean | undefined;
|
|
@@ -54,6 +61,9 @@ declare const mapConfigurationSchema: z.ZodObject<{
|
|
|
54
61
|
states?: {
|
|
55
62
|
api?: string | undefined;
|
|
56
63
|
} | undefined;
|
|
64
|
+
log?: {
|
|
65
|
+
api?: string | undefined;
|
|
66
|
+
} | undefined;
|
|
57
67
|
}, {
|
|
58
68
|
pin?: {
|
|
59
69
|
fade?: boolean | undefined;
|
|
@@ -68,6 +78,9 @@ declare const mapConfigurationSchema: z.ZodObject<{
|
|
|
68
78
|
states?: {
|
|
69
79
|
api?: string | undefined;
|
|
70
80
|
} | undefined;
|
|
81
|
+
log?: {
|
|
82
|
+
api?: string | undefined;
|
|
83
|
+
} | undefined;
|
|
71
84
|
}>;
|
|
72
85
|
export type MapConfiguration = z.infer<typeof mapConfigurationSchema>;
|
|
73
86
|
declare const mapProviderParametersSchema: z.ZodObject<{
|
|
@@ -445,7 +458,8 @@ export type MapMarker = z.infer<typeof mapMarkerSchema>;
|
|
|
445
458
|
export declare class MapManager {
|
|
446
459
|
private key;
|
|
447
460
|
private provider;
|
|
448
|
-
private
|
|
461
|
+
private apiStatesUrl;
|
|
462
|
+
private apiLogUrl;
|
|
449
463
|
private markerDataArray;
|
|
450
464
|
private markerDataMap;
|
|
451
465
|
private markerDataUpdating;
|
|
@@ -462,6 +476,7 @@ export declare class MapManager {
|
|
|
462
476
|
private removeMarkerData;
|
|
463
477
|
private processMarkerDataCallback;
|
|
464
478
|
private processMarkerData;
|
|
479
|
+
private log;
|
|
465
480
|
}
|
|
466
481
|
export interface MapLibreClass {
|
|
467
482
|
new (options: maplibregl.MapOptions): maplibregl.Map;
|