@maptiler/geocoding-control 0.0.84 → 0.0.86
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/GeocodingControl.svelte +189 -204
- package/MapLibreBasedGeocodingControl.d.ts +59 -0
- package/MapTilerSdkGeocodingControl.d.ts +8 -0
- package/README.md +11 -11
- package/leaflet.js +21 -21
- package/leaflet.js.map +1 -1
- package/leaflet.umd.js +1 -1
- package/leaflet.umd.js.map +1 -1
- package/maplibregl-controller.d.ts +2 -2
- package/maplibregl-controller.js +1 -1
- package/maplibregl-controller.js.map +1 -1
- package/maplibregl-controller.umd.js +1 -1
- package/maplibregl-controller.umd.js.map +1 -1
- package/maplibregl.d.ts +7 -58
- package/maplibregl.js +978 -979
- package/maplibregl.js.map +1 -1
- package/maplibregl.umd.js +5 -5
- package/maplibregl.umd.js.map +1 -1
- package/maptilersdk.js +16151 -0
- package/maptilersdk.js.map +1 -0
- package/maptilersdk.umd.js +26 -0
- package/maptilersdk.umd.js.map +1 -0
- package/package.json +9 -3
- package/react.js +207 -207
- package/react.js.map +1 -1
- package/react.umd.js +1 -1
- package/react.umd.js.map +1 -1
- package/style.css +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import type * as maplibregl from "maplibre-gl";
|
|
1
2
|
import type { FillLayerSpecification, FitBoundsOptions, FlyToOptions, LineLayerSpecification, Map } from "maplibre-gl";
|
|
2
|
-
import * as maplibregl from "maplibre-gl";
|
|
3
3
|
import type { MapController } from "./types.js";
|
|
4
4
|
type MapLibreGL = Pick<typeof maplibregl, "Marker" | "Popup">;
|
|
5
|
-
export declare function
|
|
5
|
+
export declare function createMapLibreGlMapController(map: Map, maplibregl?: MapLibreGL | undefined, marker?: boolean | maplibregl.MarkerOptions, showResultMarkers?: boolean | maplibregl.MarkerOptions, flyToOptions?: FlyToOptions, fitBoundsOptions?: FitBoundsOptions, fullGeometryStyle?: undefined | {
|
|
6
6
|
fill?: Pick<FillLayerSpecification, "layout" | "paint" | "filter">;
|
|
7
7
|
line?: Pick<LineLayerSpecification, "layout" | "paint" | "filter">;
|
|
8
8
|
}): MapController;
|
package/maplibregl-controller.js
CHANGED
|
@@ -15037,6 +15037,6 @@ function Cl(n, t, e = !0, r = !0, i = {}, o = {}, s = {
|
|
|
15037
15037
|
};
|
|
15038
15038
|
}
|
|
15039
15039
|
export {
|
|
15040
|
-
Cl as
|
|
15040
|
+
Cl as createMapLibreGlMapController
|
|
15041
15041
|
};
|
|
15042
15042
|
//# sourceMappingURL=maplibregl-controller.js.map
|