import react, { useCallback, useState } from 'react'; import Handlers from './Handlers'; import Tile from './Tile'; import TiledLayer from './TiledLayer'; import { Point, TileFactory } from './types'; export interface MapProperties {} /** * * @returns A Map component */ export const Map: react.FC = (props: MapProperties) => { const [coordinateSystem, setCoordinateSystem] = useState({ zoom: 1, shift: { x: 0, y: 0 }, }); const simpleTileFactory: TileFactory = useCallback( (keyObject) => ( ), [] ); const transformMap = ( deltaShift: Point | null, deltaZoom: number | null, zoomCenter: Point | null ) => { const actualDeltaShift = deltaShift === null ? { x: 0, y: 0 } : deltaShift; const actualDeltaZoom = deltaZoom === null ? 1 : deltaZoom; const actualZoomCenter = zoomCenter === null ? { x: 0, y: 0 } : zoomCenter; var newCoordinateSystem = { shift: { x: coordinateSystem.shift.x + actualDeltaShift.x + (coordinateSystem.shift.x - actualZoomCenter.x) * (actualDeltaZoom - 1), y: coordinateSystem.shift.y + actualDeltaShift.y + (coordinateSystem.shift.y - actualZoomCenter.y) * (actualDeltaZoom - 1), }, zoom: coordinateSystem.zoom * actualDeltaZoom, }; setCoordinateSystem(newCoordinateSystem); }; const viewPort = { topLeft: { x: Math.floor(-coordinateSystem.shift.x / coordinateSystem.zoom / 256), y: Math.floor(-coordinateSystem.shift.y / coordinateSystem.zoom / 256), }, bottomRight: { x: Math.ceil( (-coordinateSystem.shift.x + window.innerWidth) / coordinateSystem.zoom / 256 ), y: Math.ceil( (-coordinateSystem.shift.y + window.innerHeight) / coordinateSystem.zoom / 256 ), }, }; return ( <> ); }; export default Map;