@@ -65,7 +65,7 @@ export type MarkerDefinition<BridgeMarkerOptions, BridgeInfoWindowOptions> = Wit
65
65
infoWindow ?: Omit < InfoWindowDefinition < BridgeInfoWindowOptions > , 'position' > ;
66
66
icon ?: Icon ;
67
67
/**
68
- * @deprecated Use "bridgeOptions" instead.
68
+ * @deprecated since Symfony UX Map 2.27, use "bridgeOptions" instead.
69
69
* Raw options passed to the marker constructor, specific to the map provider (e.g.: `L.marker()` for Leaflet).
70
70
*/
71
71
rawOptions ?: BridgeMarkerOptions ;
@@ -86,9 +86,12 @@ export type MarkerDefinition<BridgeMarkerOptions, BridgeInfoWindowOptions> = Wit
86
86
export type PolygonDefinition < BridgePolygonOptions , BridgeInfoWindowOptions > = WithIdentifier < {
87
87
infoWindow ?: Omit < InfoWindowDefinition < BridgeInfoWindowOptions > , 'position' > ;
88
88
points : Array < Point > | Array < Array < Point > > ;
89
+ /**
90
+ * @deprecated since Symfony UX Map 2.29, use "infoWindow" instead
91
+ */
89
92
title : string | null ;
90
93
/**
91
- * @deprecated Use "bridgeOptions" instead.
94
+ * @deprecated since Symfony UX Map 2.27, use "bridgeOptions" instead.
92
95
* Raw options passed to the polygon constructor, specific to the map provider (e.g.: `L.polygon()` for Leaflet).
93
96
*/
94
97
rawOptions ?: BridgePolygonOptions ;
@@ -109,9 +112,12 @@ export type PolygonDefinition<BridgePolygonOptions, BridgeInfoWindowOptions> = W
109
112
export type PolylineDefinition < BridgePolylineOptions , BridgeInfoWindowOptions > = WithIdentifier < {
110
113
infoWindow ?: Omit < InfoWindowDefinition < BridgeInfoWindowOptions > , 'position' > ;
111
114
points : Array < Point > ;
115
+ /**
116
+ * @deprecated since Symfony UX Map 2.29, use "infoWindow" instead
117
+ */
112
118
title : string | null ;
113
119
/**
114
- * @deprecated Use "bridgeOptions" instead.
120
+ * @deprecated since Symfony UX Map 2.27, use "bridgeOptions" instead.
115
121
* Raw options passed to the polyline constructor, specific to the map provider (e.g.: `L.polyline()` for Leaflet).
116
122
*/
117
123
rawOptions ?: BridgePolylineOptions ;
@@ -133,9 +139,12 @@ export type CircleDefinition<BridgeCircleOptions, BridgeInfoWindowOptions> = Wit
133
139
infoWindow ?: Omit < InfoWindowDefinition < BridgeInfoWindowOptions > , 'position' > ;
134
140
center : Point ;
135
141
radius : number ;
142
+ /**
143
+ * @deprecated since Symfony UX Map 2.29, use "infoWindow" instead
144
+ */
136
145
title : string | null ;
137
146
/**
138
- * @deprecated Use "bridgeOptions" instead.
147
+ * @deprecated since Symfony UX Map 2.27, use "bridgeOptions" instead.
139
148
* Raw options passed to the circle constructor, specific to the map provider (e.g.: `L.circle()` for Leaflet).
140
149
*/
141
150
rawOptions ?: BridgeCircleOptions ;
@@ -157,9 +166,12 @@ export type RectangleDefinition<BridgeRectangleOptions, BridgeInfoWindowOptions>
157
166
infoWindow ?: Omit < InfoWindowDefinition < BridgeInfoWindowOptions > , 'position' > ;
158
167
southWest : Point ;
159
168
northEast : Point ;
169
+ /**
170
+ * @deprecated since Symfony UX Map 2.29, use "infoWindow" instead
171
+ */
160
172
title : string | null ;
161
173
/**
162
- * @deprecated Use "bridgeOptions" instead.
174
+ * @deprecated since Symfony UX Map 2.27, use "bridgeOptions" instead.
163
175
* Raw options passed to the rectangle constructor, specific to the map provider (e.g.: `L.rectangle()` for Leaflet).
164
176
*/
165
177
rawOptions ?: BridgeRectangleOptions ;
@@ -184,7 +196,7 @@ export type InfoWindowDefinition<BridgeInfoWindowOptions> = {
184
196
opened : boolean ;
185
197
autoClose : boolean ;
186
198
/**
187
- * @deprecated Use "bridgeOptions" instead.
199
+ * @deprecated since Symfony UX Map 2.27, use "bridgeOptions" instead.
188
200
* Raw options passed to the info window constructor, specific to the map provider (e.g.: `google.maps.InfoWindow()` for Google Maps).
189
201
*/
190
202
rawOptions ?: BridgeInfoWindowOptions ;
0 commit comments