Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
constructor(
private mapService: MapService,
private projectionService: ProjectionService // Don't remove this or it'll never be injected
) {
this._map = new IgoMap({
controls: {
scaleLine: true,
attribution: {
collapsed: true
}
}
});
this.mapService.setMap(this.map);
}
}