Skip to content

Commit

Permalink
WFNEWS-2396 : Remove fill from perimeter polygons (#2078)
Browse files Browse the repository at this point in the history
  • Loading branch information
sukhpalp authored Aug 14, 2024
1 parent 74822c7 commit 8633acd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
SimpleIncident,
} from '@app/services/published-incident-service';
import { WatchlistService } from '@app/services/watchlist-service';
import { ResourcesRoutes, convertToDateTime, convertToDateYear, getStageOfControlIcon, getStageOfControlLabel, openLink, currentFireYear } from '@app/utils';
import { ResourcesRoutes, convertToDateTime, convertToDateYear, currentFireYear, getStageOfControlIcon, getStageOfControlLabel, openLink } from '@app/utils';
import { AppConfigService } from '@wf1/core-ui';
import * as esri from 'esri-leaflet';
import L from 'leaflet';
Expand Down Expand Up @@ -112,12 +112,12 @@ export class EvacAlertFullDetailsComponent implements OnInit {
esri.featureLayer({
url: this.appConfigService.getConfig()['externalAppConfig']['AGOLperimetres'].toString(),
ignoreRenderer: true,
precision: 3,
precision: 10,
style: (feature) => ({
fillColor: '#e60000',
color: '#e60000',
weight: 2,
fillOpacity: 0.5
fillOpacity: 0
})
})
.addTo(this.map);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,12 @@ export class IncidentHeaderPanelComponent implements AfterViewInit, OnInit {
private perimeterLayer = esri.featureLayer({
url: this.appConfigService.getConfig()['externalAppConfig']['AGOLperimetres'].toString(),
ignoreRenderer: true,
precision: 3,
precision: 10,
style: (feature) => ({
fillColor: '#e60000',
color: '#e60000',
weight: 2,
fillOpacity: 0.5
fillOpacity: 0
})
})

Expand Down

0 comments on commit 8633acd

Please sign in to comment.