Skip to content

Legend panel

Raitis Berzins edited this page Oct 6, 2021 · 6 revisions

Add HsLegendModule module import:

import {HsLegendModule} from 'hslayers-ng';
@NgModule({
  imports: [HsLegendModule],
})
export class YourAppModule {}

Add HsLegendPanel component:

import {HsLayoutService, HsLegendComponent} from 'hslayers-ng';
@Component({
  selector: 'your-app-component',
  templateUrl: 'your-app-component.html',
})
export class YourAppComponent {
  constructor(hsLayoutService: HsLayoutService) {
    hsLayoutService.createPanel(HsLegendComponent, {});
  }
}
Clone this wiki locally