# HG changeset patch # User Bernhard Reiter # Date 1550500381 -3600 # Node ID 77adbdd24d52870b02ad21aa48c8e8f8905207d3 # Parent f42a7ba05979c8702f9fc9dd5af997ad0b626e83 client: fix drawing perormance * Change the vector drawing style of LOS 1 and LOS 2 layers, because hte old dash segments array posed a problem for chromium (observed with 71.0.3578.80-1~deb9u1). diff -r f42a7ba05979 -r 77adbdd24d52 client/src/store/map.js --- a/client/src/store/map.js Mon Feb 18 14:08:19 2019 +0100 +++ b/client/src/store/map.js Mon Feb 18 15:33:01 2019 +0100 @@ -170,7 +170,7 @@ new Style({ stroke: new Stroke({ color: "rgba(0, 0, 255, 0.9)", - lineDash: [0, 5, 5, 5], + lineDash: [3, 6], lineCap: "round", width: 2 }) @@ -201,7 +201,7 @@ new Style({ stroke: new Stroke({ color: "rgba(0, 0, 255, 0.8)", - lineDash: [0, 5], + lineDash: [2, 4], lineCap: "round", width: 2 })