@besovideo/bvmap-leaflet 0.0.23 → 0.0.24
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.
|
@@ -80,6 +80,7 @@ export declare function CreateMap<T>(params: {
|
|
|
80
80
|
imgUrl: string | Promise<string>;
|
|
81
81
|
title: string;
|
|
82
82
|
className?: string;
|
|
83
|
+
divIconOptions?: Pick<L.DivIconOptions, "iconAnchor">;
|
|
83
84
|
} | undefined;
|
|
84
85
|
utils: {
|
|
85
86
|
showTrajektoria(): void;
|
|
@@ -110,6 +111,7 @@ export declare function CreateMap<T>(params: {
|
|
|
110
111
|
imgUrl: string | Promise<string>;
|
|
111
112
|
title: string;
|
|
112
113
|
className?: string;
|
|
114
|
+
divIconOptions?: Pick<L.DivIconOptions, "iconAnchor">;
|
|
113
115
|
} | undefined;
|
|
114
116
|
utils: {
|
|
115
117
|
showTrajektoria(): void;
|
|
@@ -140,6 +142,7 @@ export declare function CreateMap<T>(params: {
|
|
|
140
142
|
imgUrl: string | Promise<string>;
|
|
141
143
|
title: string;
|
|
142
144
|
className?: string;
|
|
145
|
+
divIconOptions?: Pick<L.DivIconOptions, "iconAnchor">;
|
|
143
146
|
} | undefined;
|
|
144
147
|
utils: {
|
|
145
148
|
showTrajektoria(): void;
|
|
@@ -172,6 +175,7 @@ export declare function CreateMap<T>(params: {
|
|
|
172
175
|
imgUrl: string | Promise<string>;
|
|
173
176
|
title: string;
|
|
174
177
|
className?: string;
|
|
178
|
+
divIconOptions?: Pick<L.DivIconOptions, "iconAnchor">;
|
|
175
179
|
} | undefined;
|
|
176
180
|
utils: {
|
|
177
181
|
showTrajektoria(): void;
|
|
@@ -14,6 +14,7 @@ export interface IAddMarkerParams<T> {
|
|
|
14
14
|
imgUrl: string | Promise<string>;
|
|
15
15
|
title: string;
|
|
16
16
|
className?: string;
|
|
17
|
+
divIconOptions?: Pick<L.DivIconOptions, "iconAnchor">;
|
|
17
18
|
};
|
|
18
19
|
userdata: T;
|
|
19
20
|
options?: L.MarkerOptions;
|
|
@@ -74,6 +75,7 @@ export declare class LeafletMarkerHandle<T = any> {
|
|
|
74
75
|
imgUrl: string | Promise<string>;
|
|
75
76
|
title: string;
|
|
76
77
|
className?: string;
|
|
78
|
+
divIconOptions?: Pick<L.DivIconOptions, "iconAnchor">;
|
|
77
79
|
} | undefined;
|
|
78
80
|
utils: {
|
|
79
81
|
showTrajektoria(): void;
|
|
@@ -105,6 +107,7 @@ export declare class LeafletMarkerHandle<T = any> {
|
|
|
105
107
|
imgUrl: string | Promise<string>;
|
|
106
108
|
title: string;
|
|
107
109
|
className?: string;
|
|
110
|
+
divIconOptions?: Pick<L.DivIconOptions, "iconAnchor">;
|
|
108
111
|
} | undefined;
|
|
109
112
|
utils: {
|
|
110
113
|
showTrajektoria(): void;
|
|
@@ -136,6 +139,7 @@ export declare class LeafletMarkerHandle<T = any> {
|
|
|
136
139
|
imgUrl: string | Promise<string>;
|
|
137
140
|
title: string;
|
|
138
141
|
className?: string;
|
|
142
|
+
divIconOptions?: Pick<L.DivIconOptions, "iconAnchor">;
|
|
139
143
|
} | undefined;
|
|
140
144
|
utils: {
|
|
141
145
|
showTrajektoria(): void;
|
|
@@ -168,6 +172,7 @@ export declare class LeafletMarkerHandle<T = any> {
|
|
|
168
172
|
imgUrl: string | Promise<string>;
|
|
169
173
|
title: string;
|
|
170
174
|
className?: string;
|
|
175
|
+
divIconOptions?: Pick<L.DivIconOptions, "iconAnchor">;
|
|
171
176
|
} | undefined;
|
|
172
177
|
utils: {
|
|
173
178
|
showTrajektoria(): void;
|
|
@@ -33,6 +33,7 @@ export declare function createMarkerCustomFromMarker<T>(markerCreated: ReturnTyp
|
|
|
33
33
|
imgUrl: string | Promise<string>;
|
|
34
34
|
title: string;
|
|
35
35
|
className?: string;
|
|
36
|
+
divIconOptions?: Pick<import('leaflet').DivIconOptions, "iconAnchor">;
|
|
36
37
|
} | undefined;
|
|
37
38
|
utils: {
|
|
38
39
|
showTrajektoria(): void;
|