@maptiler/geocoding-control 0.0.91 → 0.0.92
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 +8 -7
- package/FeatureItem.svelte.d.ts +1 -0
- package/GeocodingControl.svelte +2 -0
- package/GeocodingControl.svelte.d.ts +1 -0
- package/README.md +3 -0
- package/leaflet.js +2519 -2492
- package/leaflet.js.map +1 -1
- package/leaflet.umd.js +5 -5
- package/leaflet.umd.js.map +1 -1
- package/maplibregl.js +2603 -2576
- package/maplibregl.js.map +1 -1
- package/maplibregl.umd.js +5 -5
- package/maplibregl.umd.js.map +1 -1
- package/maptilersdk.js +2602 -2575
- package/maptilersdk.js.map +1 -1
- package/maptilersdk.umd.js +5 -5
- package/maptilersdk.umd.js.map +1 -1
- package/package.json +4 -4
- package/react.js +612 -585
- package/react.js.map +1 -1
- package/react.umd.js +1 -1
- package/react.umd.js.map +1 -1
- package/types.d.ts +7 -1
package/types.d.ts
CHANGED
|
@@ -199,7 +199,7 @@ export type ControlOptions = {
|
|
|
199
199
|
/**
|
|
200
200
|
* Geocoding API URL.
|
|
201
201
|
*
|
|
202
|
-
* @default MapTiler Geocoding API URL
|
|
202
|
+
* @default MapTiler Geocoding API URL.
|
|
203
203
|
*/
|
|
204
204
|
apiUrl?: string;
|
|
205
205
|
/**
|
|
@@ -208,6 +208,12 @@ export type ControlOptions = {
|
|
|
208
208
|
* @default undefined
|
|
209
209
|
*/
|
|
210
210
|
fetchParameters?: RequestInit;
|
|
211
|
+
/**
|
|
212
|
+
* Base URL for POI icons.
|
|
213
|
+
*
|
|
214
|
+
* @default "icons/"
|
|
215
|
+
*/
|
|
216
|
+
iconsBaseUrl?: string;
|
|
211
217
|
};
|
|
212
218
|
export type DispatcherType = {
|
|
213
219
|
featuresListed: Feature[];
|