Resolve "Transition branch for CMB and Resq merging" #1181

Merged
korina.cordero merged 258 commits from 329-transition-branch-for-cmb-and-resq-merging into master 2020-04-03 02:49:26 +00:00
Showing only changes of commit 8bbe245ce9 - Show all commits

View file

@ -20,8 +20,14 @@ function mapCreate(div_id, center_lat, center_lng, map_type, zoom) {
}).addTo(map);
// rider marker layer group
// .addTo(map) --> this will display your riders by default
var ridersLayerGroup = L.layerGroup().addTo(map);
// this little snippet will not display your riders by default.
// Instead, a toggle button will display in the map, with a checkbox with text Riders.
// Check that to display the riders
//var ridersLayerGroup = L.layerGroup();
$.ajax({
url: '{{ path('rider_locations') }}',
}).done(function(response) {