Make mlat plane markers blue-ish.

This commit is contained in:
Oliver Jowett 2015-07-02 15:03:33 +01:00
parent 727361c1ab
commit 5ef9bdd6f3
2 changed files with 4 additions and 0 deletions

View File

@ -19,6 +19,7 @@ CONST_ZOOMLVL = 10;
// -- Marker settings -------------------------------------
// The default marker color
MarkerColor = "rgb(127, 127, 127)";
MlatMarkerColor = "rgb(75, 75, 180)";
SelectedColor = "rgb(225, 225, 225)";
// -- Site Settings ---------------------------------------

View File

@ -54,6 +54,9 @@ var planeObject = {
// Should create an icon for us to use on the map...
funcGetIcon : function() {
if (this.mlat == true) {
this.markerColor = MlatMarkerColor;
}
// If this marker is selected we should make it lighter than the rest.
if (this.is_selected == true) {
this.markerColor = SelectedColor;