From c23438a5cf0a6f24d048f107af0139e27ebba8ee Mon Sep 17 00:00:00 2001 From: eric1tran Date: Mon, 22 Feb 2021 22:13:59 +0000 Subject: [PATCH] Adjust aircraft label outline width --- public_html/planeObject.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public_html/planeObject.js b/public_html/planeObject.js index 0039af1..eba84af 100644 --- a/public_html/planeObject.js +++ b/public_html/planeObject.js @@ -476,7 +476,7 @@ PlaneObject.prototype.updateIcon = function() { text: new ol.style.Text({ text: this.flight, fill: new ol.style.Fill({color: 'white' }), - stroke: new ol.style.Stroke({color: 'black', width: 5}), + stroke: new ol.style.Stroke({color: 'black', width: 3}), textAlign: 'left', textBaseline: "top", offsetX: 20, @@ -516,7 +516,7 @@ PlaneObject.prototype.updateIcon = function() { text: new ol.style.Text({ text: this.flight, fill: new ol.style.Fill({color: 'white' }), - stroke: new ol.style.Stroke({color: 'black', width: 5}), + stroke: new ol.style.Stroke({color: 'black', width: 3}), textAlign: 'left', textBaseline: "top", offsetX: 20,