mirror of https://github.com/espruino/BangleApps
openstmap: Bugfix: Enable Compass if needed
parent
ceddc01697
commit
4777d98c10
|
@ -27,3 +27,4 @@
|
||||||
0.21: Draw a current position marker (Bangle.js 2 only)
|
0.21: Draw a current position marker (Bangle.js 2 only)
|
||||||
Enable/Disable previous position marker in new setting "Draw cont. position"
|
Enable/Disable previous position marker in new setting "Draw cont. position"
|
||||||
0.22: Replace position marker with direction arrow
|
0.22: Replace position marker with direction arrow
|
||||||
|
0.23: Bugfix: Enable Compass if needed
|
||||||
|
|
|
@ -133,6 +133,7 @@ Bangle.on('GPS',function(f) {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
Bangle.setGPSPower(1, "app");
|
Bangle.setGPSPower(1, "app");
|
||||||
|
Bangle.setCompassPower(settings.dirSrc === 2, "openstmap");
|
||||||
|
|
||||||
if (HASWIDGETS) {
|
if (HASWIDGETS) {
|
||||||
Bangle.loadWidgets();
|
Bangle.loadWidgets();
|
||||||
|
@ -196,6 +197,7 @@ function showMenu() {
|
||||||
format: v => [/*LANG*/"None", /*LANG*/"GPS", /*LANG*/"Compass"][v],
|
format: v => [/*LANG*/"None", /*LANG*/"GPS", /*LANG*/"Compass"][v],
|
||||||
onchange: v => {
|
onchange: v => {
|
||||||
settings.dirSrc = v;
|
settings.dirSrc = v;
|
||||||
|
Bangle.setCompassPower(settings.dirSrc === 2, "openstmap");
|
||||||
writeSettings();
|
writeSettings();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"id": "openstmap",
|
"id": "openstmap",
|
||||||
"name": "OpenStreetMap",
|
"name": "OpenStreetMap",
|
||||||
"shortName": "OpenStMap",
|
"shortName": "OpenStMap",
|
||||||
"version": "0.22",
|
"version": "0.23",
|
||||||
"description": "Loads map tiles from OpenStreetMap onto your Bangle.js and displays a map of where you are. Once installed this also adds map functionality to `GPS Recorder` and `Recorder` apps",
|
"description": "Loads map tiles from OpenStreetMap onto your Bangle.js and displays a map of where you are. Once installed this also adds map functionality to `GPS Recorder` and `Recorder` apps",
|
||||||
"readme": "README.md",
|
"readme": "README.md",
|
||||||
"icon": "app.png",
|
"icon": "app.png",
|
||||||
|
|
Loading…
Reference in New Issue