Doc and cache improvement.
This commit is contained in:
parent
352cb0d870
commit
50114598b2
|
@ -7,10 +7,11 @@ import { Transformation } from './LiveMap';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* See also {@link components/map/Map!relativeCoordinateSystemAtom}.
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
export interface HandlersProperties {
|
export interface HandlersProperties {
|
||||||
|
/** The transformation to apply on the `<LiveMap>` parent */
|
||||||
transformMap: (t: Transformation) => void;
|
transformMap: (t: Transformation) => void;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
|
@ -24,7 +25,7 @@ export interface HandlersProperties {
|
||||||
* * touchStart, touchEnd and touchCancel to track touch state
|
* * touchStart, touchEnd and touchCancel to track touch state
|
||||||
* * touchMove to shift the map (single finger) or shift and zoom (two fingers).
|
* * touchMove to shift the map (single finger) or shift and zoom (two fingers).
|
||||||
*
|
*
|
||||||
* Communication with the parent `<Map>` is done through {@link components/map/Map!relativeCoordinateSystemAtom}.
|
* Communication with the parent `<LiveMap>` is done through the transformMap {@link components/map/LiveMap!Transformation} property.
|
||||||
*/
|
*/
|
||||||
export const Handlers: react.FC<HandlersProperties> = (
|
export const Handlers: react.FC<HandlersProperties> = (
|
||||||
props: HandlersProperties
|
props: HandlersProperties
|
||||||
|
|
|
@ -17,7 +17,7 @@ export interface LayerStackProperties {
|
||||||
*/
|
*/
|
||||||
numberOfTiledLayers?: number;
|
numberOfTiledLayers?: number;
|
||||||
/**
|
/**
|
||||||
* The current coordinates system
|
* The coordinates system
|
||||||
*/
|
*/
|
||||||
coordinateSystem: CoordinateSystem;
|
coordinateSystem: CoordinateSystem;
|
||||||
}
|
}
|
||||||
|
@ -27,10 +27,13 @@ export interface LayerStackProperties {
|
||||||
* @param props
|
* @param props
|
||||||
* @returns A stack of layers embedded in an SVG element
|
* @returns A stack of layers embedded in an SVG element
|
||||||
*
|
*
|
||||||
* This component does the conversion between the {@link components/map/Map!CoordinateSystem} stored
|
* This component does the conversion between the {@link components/map/LiveMap!CoordinateSystem} and
|
||||||
* in the {@link components/map/Map!coordinateSystemAtom} atom and the {@link components/map/TiledLayer!TiledLayer}
|
* the `<`{@link components/map/TiledLayer!TiledLayer}`>`
|
||||||
* components which units are in tiles.
|
* components which units are in tiles.
|
||||||
*
|
*
|
||||||
|
* When more then one {@link components/map/TiledLayer!TiledLayer} is required, the tiled layer identified by the keyObject is considered active and new tiles are added
|
||||||
|
* as needed and the other layers are used as backups while the tiles are loading.
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
export const LayerStack: react.FC<LayerStackProperties> = (
|
export const LayerStack: react.FC<LayerStackProperties> = (
|
||||||
props: LayerStackProperties
|
props: LayerStackProperties
|
||||||
|
|
|
@ -102,6 +102,9 @@ export const TileSet: react.FC<TileSetProperties> = memo(
|
||||||
tiles.delete(tileKey);
|
tiles.delete(tileKey);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
if (globalThis.cacheForTileSet.has(key)) {
|
||||||
|
globalThis.cacheForTileSet.delete(key);
|
||||||
|
}
|
||||||
globalThis.cacheForTileSet.set(key, tiles);
|
globalThis.cacheForTileSet.set(key, tiles);
|
||||||
if (globalThis.cacheForTileSet > tileSetConfig.numberOfCachedLayers) {
|
if (globalThis.cacheForTileSet > tileSetConfig.numberOfCachedLayers) {
|
||||||
const oldestCachedLayerKeys = [...globalThis.cacheForTileSet.keys()];
|
const oldestCachedLayerKeys = [...globalThis.cacheForTileSet.keys()];
|
||||||
|
|
Loading…
Reference in New Issue