Selaa lähdekoodia

feat: Slightly thicker NUTS3 borders

jmacura 5 vuotta sitten
vanhempi
commit
f1d74cc584
2 muutettua tiedostoa jossa 4 lisäystä ja 1 poistoa
  1. 0 1
      src/adjuster/adjuster-loader.component.ts
  2. 4 0
      src/app.component.ts

+ 0 - 1
src/adjuster/adjuster-loader.component.ts

@@ -15,7 +15,6 @@ export class AdjusterLoaderComponent implements HsDialogComponent, OnInit {
     private hsDialogContainerService: HsDialogContainerService,
     private adjusterService: AdjusterService
   ) {
-    console.log('created');
     this.adjusterService.clustersLoaded.subscribe(() => {
       this.hsDialogContainerService.destroy(this);
     });

+ 4 - 0
src/app.component.ts

@@ -91,6 +91,10 @@ const nuts3style = function (feature) {
         fill: new Fill({
           color: colorPalette[feature.get(method) - 1],
         }),
+        stroke: new Stroke({
+          color: '#FFF',
+          width: 0.25,
+        }),
       }),
     ];
   }