From 44a1c5b7e62e83af4d670e011f5998b9b8aedfef Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Mon, 29 Aug 2022 10:24:51 +0300 Subject: Update all .tsx files and remove unused --- src/Map.tsx | 65 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 src/Map.tsx (limited to 'src/Map.tsx') diff --git a/src/Map.tsx b/src/Map.tsx new file mode 100644 index 0000000..c39e1ac --- /dev/null +++ b/src/Map.tsx @@ -0,0 +1,65 @@ +import React, { Fragment, useState } from "react"; +import ReactMapboxGl, { Layer, Source } from "react-mapbox-gl"; + +import { + MAPBOX_ACCESS_TOKEN, + IMAGE_COORDINATES, + IMAGES_BASE_URL +} from "./config"; + +import "mapbox-gl/dist/mapbox-gl.css"; + +const Mapbox = ReactMapboxGl({ + accessToken: MAPBOX_ACCESS_TOKEN, + minZoom: 5, + maxZoom: 10, + hash: false +}); + +function Map(props) { + const [center] = useState([35, 31.9]); + const [zoom] = useState([6.3]); + + return ( + + {props.images.map((img, i) => { + const id = `radar-280-${i}`; + return ( + + + + + ); + })} + + ); +} + +export default Map; -- cgit v1.3.1