Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
akariv committed Oct 19, 2023
1 parent 9346810 commit 0aa9f3f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions projects/srm/src/app/map/map.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,8 @@ export class MapComponent implements OnChanges, AfterViewInit {
colorStyle.push('#444444');
this.map.setPaintProperty(LAYER_POINTS_ON_CENTER, 'circle-color', colorStyle);
this.map.setPaintProperty(LAYER_POINTS_STROKE_ON, 'circle-stroke-color', colorStyle);
this.map.setPaintProperty(LAYER_POINTS_ACTIVE, 'circle-color', colorStyle);
this.map.setPaintProperty(LAYER_POINTS_STROKE_ACTIVE, 'circle-stroke-color', colorStyle);

this.map.getStyle().layers?.filter((l) => LAYERS_CLICKABLE.indexOf(l.id) >= 0).forEach((layer) => {
const layerName = layer.id;
Expand Down

0 comments on commit 0aa9f3f

Please sign in to comment.