Hiding Map Controls
Waymark’s Map Interface is built using Leaflet JS.
Controls can be hidden using CSS rules.
Waymark marker_centre="54.526814,-3.017289" marker_type="camp"
/* This will hide the Controls on *all* Maps */
.waymark-map .leaflet-control-locate,
.waymark-map .leaflet-control-layers,
.waymark-map .leaflet-control-fullscreen,
.waymark-map .leaflet-control-zoom {
display: none;
}