map = {
let map = container.value = new mapboxgl.Map({
container,
center: [-78.476678, 38.029306],
zoom: 12,
style: "mapbox://styles/mapbox/streets-v11",
});
let projection = d => map.project(new mapboxgl.LngLat(d[0],d[1]));
let mapSVG = d3.select(container).select("#svgContainer")
.attr("width","100%")
.attr("height","100%")
.style("position","absolute")
.style("z-index",2)
.style("pointer-events", "none");
let dotsOnMap = () => {
mapSVG.selectAll(".dot")
.data(locations)
.join("circle")
.attr("cx", d => projection(d).x)
.attr("cy", d => projection(d).y)
.attr("r", 20)
.classed("dot", true);
}
map.on('load', () => {
});
map.on('move', () => {
update();
});
let hometown_options = {
className: "dot",
rField: "duration",
rScale: 0.5
}
let update = () => {
dotsOnMap();
}
update();
invalidation.then(() => map.remove());
}