@richpods/tiny-geojson-tool 0.3.0 → 0.3.1

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.
@@ -9,9 +9,11 @@ type __VLS_Props = {
9
9
  zoom?: number;
10
10
  bboxPadding?: BboxPadding;
11
11
  };
12
+ declare function fitBounds(): void;
12
13
  declare function getMap(): MaplibreMap | null;
13
14
  declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {
14
15
  getMap: typeof getMap;
16
+ fitBounds: typeof fitBounds;
15
17
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
16
18
  "update:modelValue": (value: EditorFeatureCollection) => any;
17
19
  featureClick: (feature: EditorFeature | null) => any;
@@ -9,6 +9,7 @@ type __VLS_Props = {
9
9
  bboxPadding?: BboxPadding;
10
10
  l10n?: Partial<EditorLocale>;
11
11
  };
12
+ declare function fitBounds(): void;
12
13
  declare function getMap(): MaplibreMap | null;
13
14
  type __VLS_ModelProps = {
14
15
  modelValue?: EditorFeatureCollection;
@@ -16,6 +17,7 @@ type __VLS_ModelProps = {
16
17
  type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
17
18
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
18
19
  getMap: typeof getMap;
20
+ fitBounds: typeof fitBounds;
19
21
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
20
22
  "update:modelValue": (value: EditorFeatureCollection) => any;
21
23
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
@@ -7,9 +7,11 @@ type __VLS_Props = {
7
7
  zoom?: number;
8
8
  bboxPadding?: BboxPadding;
9
9
  };
10
+ declare function fitBounds(): void;
10
11
  declare function getMap(): MaplibreMap | null;
11
12
  declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {
12
13
  getMap: typeof getMap;
14
+ fitBounds: typeof fitBounds;
13
15
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
14
16
  modelValue: EditorFeatureCollection;
15
17
  bboxPadding: BboxPadding;