/** * @file * Contains common functions used specifically with the Leaflet map. */ /* * The default style for a marker. */ export const markerStyle = { radius: 5, fillColor: "red", fillOpacity: 0.9, color: "white", weight: 2, opacity: 1, }; /* * The default style for a stroke. */ export const strokeStyle = { color: "red", weight: 4, };