@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/FeatureItem.svelte +1 -1
- package/GeocodingControl.svelte +2 -5
- package/GeocodingControl.svelte.d.ts +1 -0
- package/leaflet.js +1937 -1935
- package/leaflet.js.map +1 -1
- package/leaflet.umd.js +5 -5
- package/leaflet.umd.js.map +1 -1
- package/maplibregl.js +1890 -1888
- package/maplibregl.js.map +1 -1
- package/maplibregl.umd.js +5 -5
- package/maplibregl.umd.js.map +1 -1
- package/maptilersdk.js +1889 -1887
- package/maptilersdk.js.map +1 -1
- package/maptilersdk.umd.js +5 -5
- package/maptilersdk.umd.js.map +1 -1
- package/package.json +1 -1
- package/react.js +268 -266
- package/react.js.map +1 -1
- package/react.umd.js +1 -1
- package/react.umd.js.map +1 -1
- package/types.d.ts +12 -0
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[];
|