From f90ecf08d2b0d37a7e43a6ac4f1b94c845a44318 Mon Sep 17 00:00:00 2001 From: Torsten Dreyer Date: Sun, 23 Mar 2014 23:16:11 +0100 Subject: [PATCH] browsermap: less ugly runway rendering --- webgui/map/index.html | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/webgui/map/index.html b/webgui/map/index.html index 075e101eb..362316579 100644 --- a/webgui/map/index.html +++ b/webgui/map/index.html @@ -192,6 +192,16 @@ L.RotatedMarker = L.Marker.extend({ weight: 1, }; } + if( feature.properties.type == "airport" ) { + return { + color: 'black', + weight: 3, + fill: 'true', + fillColor: '#606060', + fillOpacity: 1.0, + lineJoin: 'bevel', + }; + } } });