Interface LeafletMarkerOptions

Option for Leaflet markers.

const marker = {
show: 'all',
}
interface LeafletMarkerOptions {
    icon?: Icon;
    show: boolean | "all";
}

Properties

Properties

icon?: Icon

Marker to use for results.

show: boolean | "all"

true to show the result marker, all to show all results and false to hide markers.