recorder/docroot/utils/map_leaflet.js
2022-04-17 19:22:33 +02:00

26 lines
366 B
JavaScript

/**
* @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,
};