import { useState, useEffect } from "react"; import { Poi } from "../../redux/types/Poi"; import { convertModeObjectToArray } from "../../utils/convertModeObjectToArray"; import { FaWalking } from "react-icons/fa"; import { AiFillCar } from "react-icons/ai"; import { Map, Marker } from "react-map-gl"; import ControlPanel from "./control-panel"; import pin from "../../assets/images/pin.png"; type DemographicsSectionProps = { selectedPoi: Poi; }; const MapSection: React.FC = ({ selectedPoi }) => { const [mapStyle, setMapStyle] = useState(null); return (
{/* You can customize the pin marker here */} Custom Marker
); }; export default MapSection;