import React, { useContext } from "react" import BoxMap from "../base/BoxMap" import ContextLanguage from "../../contexts/ContextLanguage" import { Marker, Popup } from "react-leaflet" const locationRegex = /[{](?[0-9.]+),(?[0-9.]+)[}]/ export default function BoxVisualizationMap({ tweets, ...props }) { const { strings } = useContext(ContextLanguage) console.debug(tweets) const markers = tweets.filter(tweet => tweet.location).map(tweet => { const match = locationRegex.exec(tweet.location) if(!match) { console.error("No match for location ", tweet.location) return null } const { lat, lng } = match.groups return (

{tweet["content"]}

@{tweet["poster"]}

) }) return ( {markers} ) }