@maptiler/geocoding-control 0.0.91-git.4d23c0 → 0.0.91-git.896be4

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/types.d.ts CHANGED
@@ -196,6 +196,18 @@ export type ControlOptions = {
196
196
  * @default undefined all available feature types are returned
197
197
  */
198
198
  types?: string[];
199
+ /**
200
+ * Geocoding API URL.
201
+ *
202
+ * @default MapTiler Geocoding API URL
203
+ */
204
+ apiUrl?: string;
205
+ /**
206
+ * Extra fetch parameters.
207
+ *
208
+ * @default undefined
209
+ */
210
+ fetchParameters?: RequestInit;
199
211
  };
200
212
  export type DispatcherType = {
201
213
  featuresListed: Feature[];