mirror of
https://github.com/owntracks/recorder.git
synced 2024-11-15 09:58:40 -07:00
26 lines
366 B
JavaScript
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,
|
|
};
|