@php($map_options = json_encode([
'id' => $altimax_map['id'],
'markers' => $altimax_map['markers'],
'gpxs' => $altimax_map['gpxs'],
'kmls' => $altimax_map['kmls'],
'useGpx' => $altimax_map['useGpx'],
'useKml' => $altimax_map['useKml'],
'useElevation' => $altimax_map['useElevation'],
'useHoverGpx' => $altimax_map['useHoverGpx'],
'center' => [ $altimax_map['center']['latitude'] , $altimax_map['center']['longitude']],
'zoom' => $altimax_map['center']['zoom'],
'isGoogle'=> $altimax_map['isGoogle'],
'layer' => $altimax_map['layer'],
'attribution' => $altimax_map['attribution'],
'disablePopup' => true,
'useCluster' => $altimax_map['useCluser'],
'leafletOptions' => [
"scrollWheelZoom"=> false,
"zoomControl"=> true,
"mapTypeControl"=> false,
"scaleControl"=> false,
"streetViewControl"=> false,
"rotateControl"=> false,
"keyboardShortcuts"=> false,
"draggable"=> true
]
]))