@opengeoweb/webmap-react 9.33.1-spike-ol.6 → 9.35.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opengeoweb/webmap-react",
3
- "version": "9.33.1-spike-ol.6",
3
+ "version": "9.35.0",
4
4
  "description": "GeoWeb react wrapper for webmap",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -4,5 +4,6 @@ export interface MapViewProps extends ReactMapViewProps {
4
4
  controls?: {
5
5
  zoomControls?: boolean;
6
6
  };
7
+ isTimeScrollingEnabled?: boolean;
7
8
  }
8
9
  export declare const MapView: React.FC<MapViewProps>;
@@ -1,6 +1,6 @@
1
1
  /// <reference types="node" />
2
2
  import * as React from 'react';
3
- import { IWMJSMap, WMLayer, WMBBOX } from '@opengeoweb/webmap';
3
+ import { IWMJSMap, WMLayer, WMBBOX, TileServerSettings } from '@opengeoweb/webmap';
4
4
  import { ReactMapViewProps } from './types';
5
5
  import type { MapViewLayerProps } from '../MapView';
6
6
  export declare const ORIGIN_REACTMAPVIEW_ONMAPCHANGEDIMENSION = "ORIGIN_REACTMAPVIEW_ONMAPCHANGEDIMENSION";
@@ -21,6 +21,7 @@ export declare class ReactMapView extends React.Component<ReactMapViewProps, Rea
21
21
  adaguc: AdagucObjectProp;
22
22
  adagucContainerRef: React.RefObject<HTMLDivElement>;
23
23
  adagucWebMapJSRef: React.RefObject<HTMLDivElement>;
24
+ tileServerSettings: TileServerSettings;
24
25
  refetchTimer: NodeJS.Timeout | number | null;
25
26
  lastRefetched: number | null;
26
27
  static defaultProps: {
@@ -34,6 +35,7 @@ export declare class ReactMapView extends React.Component<ReactMapViewProps, Rea
34
35
  shouldAutoFetch: boolean;
35
36
  displayMapPin: boolean;
36
37
  disableMapPin: boolean;
38
+ tileServerSettings: TileServerSettings;
37
39
  onWMJSMount: () => void;
38
40
  onWMJSUnMount: () => void;
39
41
  onMapChangeDimension: () => void;
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import { Bbox, Dimension, IWMJSMap } from '@opengeoweb/webmap';
2
+ import { Bbox, Dimension, IWMJSMap, TileServerSettings } from '@opengeoweb/webmap';
3
3
  import { TFunction } from 'i18next';
4
4
  export interface ReactMapViewProps {
5
5
  listeners?: {
@@ -8,6 +8,7 @@ export interface ReactMapViewProps {
8
8
  keep: boolean;
9
9
  callbackfunction: (webMap: IWMJSMap, value: string) => void;
10
10
  }[];
11
+ isTimeScrollingEnabled?: boolean;
11
12
  srs?: string;
12
13
  bbox?: Bbox;
13
14
  children?: React.ReactNode;
@@ -15,6 +16,7 @@ export interface ReactMapViewProps {
15
16
  activeLayerId?: string;
16
17
  showScaleBar?: boolean;
17
18
  showLegend?: boolean;
19
+ tileServerSettings?: TileServerSettings;
18
20
  passiveMap?: boolean;
19
21
  displayTimeInMap?: boolean;
20
22
  animationDelay?: number;