1
0
Fork 0

Phi: Show fixes on map

This commit is contained in:
Torsten Dreyer 2015-03-14 11:05:36 +01:00
parent 60da209425
commit 8e87134139
3 changed files with 6 additions and 1 deletions

4
webgui/images/fix.svg Normal file
View file

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 100 100" preserveAspectRatio="xMinYMin meet">
<path stroke="black" stroke-width="5" fill="none" d="M50,10 L90,90 L10,90 z" />
</svg>

After

Width:  |  Height:  |  Size: 253 B

View file

@ -29,6 +29,7 @@
MAP_ICON["VOR"] = SquareIcon(30, 'images/vor.svg');
MAP_ICON["NDB"] = SquareIcon(30, 'images/ndb.svg');
MAP_ICON["dme"] = SquareIcon(30, 'images/dme.svg');
MAP_ICON["fix"] = SquareIcon(20, 'images/fix.svg');
MAP_ICON["airport-paved"] = SquareIcon(30, 'images/airport-paved.svg');
MAP_ICON["airport-unpaved"] = SquareIcon(30, 'images/airport-unpaved.svg');
MAP_ICON["airport-unknown"] = SquareIcon(30, 'images/airport-unknown.svg');

View file

@ -137,7 +137,7 @@
var filter = "vor,ndb,airport";
if (radius < 60)
filter += ",ils,dme,loc,om";
filter += ",ils,dme,loc,om,fix";
if (radius < 20)
filter += ",mm";