Add "auto" map theme as default (changes between light and dark based on app theme)
This commit is contained in:
parent
0415aa565b
commit
7eb588dd44
@ -17,12 +17,21 @@ function leafletMap() {
|
||||
map.maptype = "leaflet";
|
||||
|
||||
if (getStorage("mapsource") == null) {
|
||||
setStorage("mapsource", "liberty");
|
||||
setStorage("mapsource", "auto");
|
||||
}
|
||||
mapsource = getStorage("mapsource");
|
||||
|
||||
if (mapsource == "auto") {
|
||||
if ($("#app").hasClass("theme-dark")) {
|
||||
mapsource = "libertydark";
|
||||
} else {
|
||||
mapsource = "liberty";
|
||||
}
|
||||
}
|
||||
|
||||
$("#mapbox").css("background-color", SETTINGS.maptileurls[getStorage("mapsource")].bgcolor);
|
||||
$("#mapbox").css("background-color", SETTINGS.maptileurls[mapsource].bgcolor);
|
||||
|
||||
L.tileLayer(SETTINGS.maptileurls[getStorage("mapsource")].url, {
|
||||
L.tileLayer(SETTINGS.maptileurls[mapsource].url, {
|
||||
minZoom: 1,
|
||||
maxZoom: 19
|
||||
}).addTo(map);
|
||||
|
@ -10,17 +10,27 @@ var firstload = true;
|
||||
|
||||
function mapboxMap() {
|
||||
|
||||
var mapsource = "auto";
|
||||
|
||||
if (getStorage("mapsource") == null) {
|
||||
setStorage("mapsource", "liberty");
|
||||
setStorage("mapsource", "auto");
|
||||
}
|
||||
mapsource = getStorage("mapsource");
|
||||
|
||||
if (mapsource == "auto") {
|
||||
if ($("#app").hasClass("theme-dark")) {
|
||||
mapsource = "libertydark";
|
||||
} else {
|
||||
mapsource = "liberty";
|
||||
}
|
||||
}
|
||||
|
||||
$("#mapbox").css("background-color", SETTINGS.maptileurls[getStorage("mapsource")].bgcolor);
|
||||
$("#mapbox").css("background-color", SETTINGS.maptileurls[mapsource].bgcolor);
|
||||
|
||||
mapboxgl.accessToken = SETTINGS.mapboxpublictoken;
|
||||
var map = new mapboxgl.Map({
|
||||
container: 'mapbox',
|
||||
style: SETTINGS.maptileurls[getStorage("mapsource")].json,
|
||||
//attributionControl: false,
|
||||
style: SETTINGS.maptileurls[mapsource].json,
|
||||
dragPan: true,
|
||||
pitch: 0,
|
||||
zoom: 2,
|
||||
|
@ -691,7 +691,13 @@ var routes = [
|
||||
path: '/maps',
|
||||
name: 'settings',
|
||||
async: function (routeTo, routeFrom, resolve, reject) {
|
||||
var mapstyles = [];
|
||||
var mapstyles = [
|
||||
{
|
||||
value: "auto",
|
||||
label: "Auto",
|
||||
selected: !inStorage("mapsource") || getStorage("mapsource") == "auto"
|
||||
}
|
||||
];
|
||||
for (var id in SETTINGS.maptileurls) {
|
||||
if (SETTINGS.maptileurls.hasOwnProperty(id)) {
|
||||
mapstyles.push({
|
||||
|
Loading…
x
Reference in New Issue
Block a user