Skip to content

Commit

Permalink
revert hardcode (#1973)
Browse files Browse the repository at this point in the history
  • Loading branch information
yzlucas authored Jun 14, 2024
1 parent 4f92f67 commit 1b44ccc
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -235,8 +235,9 @@ export class IncidentHeaderPanel implements AfterViewInit {
'&copy; <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors',
}).addTo(this.map);

//hard code now to test in dev
const databcUrl = "https://maps.dev.bcwildfireservices.com/geo/pub/ows"
const databcUrl = this.appConfigService
.getConfig()
['mapServices']['openmapsBaseUrl'].toString();
if (this.evac) {
L.tileLayer
.wms(databcUrl, {
Expand Down

0 comments on commit 1b44ccc

Please sign in to comment.