mirror of
https://github.com/jketterl/openwebrx.git
synced 2026-01-08 01:30:04 +01:00
move overlays to separate z-index to fix locator grid colors
This commit is contained in:
parent
f29f7b20e3
commit
b8868cb55a
|
|
@ -30,7 +30,8 @@ var nite = {
|
|||
fillOpacity: 0.1,
|
||||
strokeOpacity: 0,
|
||||
clickable: false,
|
||||
editable: false
|
||||
editable: false,
|
||||
zIndex: 1
|
||||
});
|
||||
this.marker_twilight_nautical = new google.maps.Circle({
|
||||
map: this.map,
|
||||
|
|
@ -40,7 +41,8 @@ var nite = {
|
|||
fillOpacity: 0.1,
|
||||
strokeOpacity: 0,
|
||||
clickable: false,
|
||||
editable: false
|
||||
editable: false,
|
||||
zIndex: 1
|
||||
});
|
||||
this.marker_twilight_astronomical = new google.maps.Circle({
|
||||
map: this.map,
|
||||
|
|
@ -50,7 +52,8 @@ var nite = {
|
|||
fillOpacity: 0.1,
|
||||
strokeOpacity: 0,
|
||||
clickable: false,
|
||||
editable: false
|
||||
editable: false,
|
||||
zIndex: 1
|
||||
});
|
||||
this.marker_night = new google.maps.Circle({
|
||||
map: this.map,
|
||||
|
|
@ -60,7 +63,8 @@ var nite = {
|
|||
fillOpacity: 0.1,
|
||||
strokeOpacity: 0,
|
||||
clickable: false,
|
||||
editable: false
|
||||
editable: false,
|
||||
zIndex: 1
|
||||
});
|
||||
},
|
||||
getShadowRadiusFromAngle: function(angle) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue