container = {
const div = DOM.element("div", { style: `height:800px;` });
const map = L.map(div).setView([40.7299, -85], 5);
L.tileLayer("https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", {
attribution:
'© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
}).addTo(map);
const mystyle = {
color: "red",
weight: 2,
opacity: 0.5,
flavor: "red"
};
const json = L.geoJSON(geojson.features, { style: mystyle });
json.addTo(map);
return div;
}