@mappedin/mappedin-js 4.0.19 → 4.0.20

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.
@@ -1854,6 +1854,21 @@ declare module '@mappedin/mappedin-js/renderer/Camera' {
1854
1854
  * Set the maximum distance (in meters) the camera is allowed to get from the ground.
1855
1855
  */
1856
1856
  set maxZoom(meters: number);
1857
+ /**
1858
+ * User camera interactions
1859
+ */
1860
+ interactions: {
1861
+ /**
1862
+ * Enable all user interactions. This does not affect programmatic
1863
+ * Camera controls, such as `set` and `focusOn`
1864
+ */
1865
+ enable: () => void;
1866
+ /**
1867
+ * Disable all user interactions. This does not affect programmatic
1868
+ * Camera controls, such as `set` and `focusOn`
1869
+ */
1870
+ disable: () => void;
1871
+ };
1857
1872
  setSafeAreaInsets(insets: {
1858
1873
  top: number;
1859
1874
  left: number;