#Leaflet Map settings
#Enable leaflet
$leaflet_maps_enable = true;
# Set initial bounds to Australia, with Zoom of 4
$geolocation_default_bounds="14865065.700277,-2963922.210025,4";
#Set my Source to be Esri Maps
$geo_leaflet_sources[] = array(
"name" => "Esri",
"code" => "Esri",
"maxZoom" => 18,
"detectRetina" => true,
"attribution" => "Tiles © Esri — Source: Esri, DeLorme, NAVTEQ, USGS, Intermap, iPC, NRCAN, Esri Japan, METI, Esri China (Hong Kong), Esri (Thailand), TomTom, 2012",
"default" => true,
"extension" => "jpeg",
"variants" => array(
"World_Street_Map" => array(
"name" => "World Street Map",
),
"World_Topo_Map" => array(
"name" => "World Topo Map",
),
"World_Imagery" => array(
"name" => "World Imagery",
),
)
);
# State which map should be default
$map_default = "Esri.World_Street_Map";
# Make the Search map height at 650px high
$mapsearch_height = 650;