15.0.0 • Published 10 months ago

@dlr-eoc/map-ol v15.0.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
10 months ago

@dlr-eoc/map-ol

how to use this in a ukis-angular (@dlr-eoc/core-ui) project

For examples see demo maps

add the following dependencies to the package.json

  • "@dlr-eoc/map-ol"
  • "@dlr-eoc/layer-control" (optional)
  • "@dlr-eoc/base-layers-raster" (optional)

add styles from OpenLayers to your application

e.g. in your apps style file

// styles.scss/styles.css
@import 'ol/ol.css';
...

or in the angular config file

// angular.json
...
  "styles": [
    ...
    "node_modules/ol/ol.css",
    "src/styles.scss"
  ],
...

add the following to a route-view.component.html

<section class="content-area map-view">
  <ukis-map-ol [layersSvc]="layerSvc" [mapState]="mapStateSvc" [controls]="controls"></ukis-map-ol>
</section>

add the following to a route-view.component.ts

import { MapOlComponent, MapOlService, IMapControls } from '@dlr-eoc/map-ol';
import { LayerControlComponent, LayersService } from '@dlr-eoc/layer-control';
import { MapStateService } from '@dlr-eoc/services-map-state';

import { OsmTileLayer, EocLitemap, BlueMarbleTile } from '@dlr-eoc/base-layers-raster';
providers: [LayersService, MapStateService, MapOlService],
standalone: true,
imports: [
    ...
    MapOlComponent,
    LayerControlComponent
]

...
controls: IMapControls;
  constructor(
    public layerSvc: LayersService,
    public mapStateSvc: MapStateService
) { }
// add a OnInit Function
export class <MyComponent> implements OnInit...
ngOnInit() {
    this.addBaselayers();
}

addBaselayers() {
    const layers = [
        new OsmTileLayer({
        visible: false
        }),
        new EocLitemap({
        visible: true
        }),
        new BlueMarbleTile({
        visible: false
        })
    ];

    layers.map(l => this.layerSvc.addLayer(l, 'Baselayers'));
}

===

This library was generated with Angular CLI version 8.2.14.

Code scaffolding

Run ng generate component component-name --project map-ol to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module --project map-ol.

Note: Don't forget to add --project map-ol or else it will be added to the default project in your angular.json file.

Build

Run ng build map-ol to build the project. The build artifacts will be stored in the dist/ directory.

Running unit tests

Run ng test map-ol to execute the unit tests via Karma.

Further help

To get more help on the Angular CLI use ng help or go check out the Angular CLI README.

15.0.0

10 months ago

15.0.0-next.1

1 year ago

13.0.1-next.0

1 year ago

14.0.0

1 year ago

13.0.0

1 year ago

14.0.0-next.0

1 year ago

15.0.0-next.0

1 year ago

12.0.1-next.4

2 years ago

12.0.1-next.3

2 years ago

12.0.1-next.2

2 years ago

12.0.1-next.1

2 years ago

12.0.1-next.0

2 years ago

12.0.0

2 years ago

12.0.0-alpha.1

2 years ago

12.0.0-alpha.0

2 years ago

12.0.0-alpha.2

2 years ago

11.1.0

2 years ago

11.0.0

2 years ago

10.0.0

3 years ago

10.1.0

3 years ago

11.0.0-alpha.1

3 years ago

10.0.0-next.0

3 years ago

11.0.0-alpha.0

3 years ago

10.0.0-next.1

3 years ago

9.0.0

3 years ago

8.1.0

4 years ago

8.0.1

4 years ago

8.0.0-next.3

4 years ago

8.0.0-next.4

4 years ago

8.0.0

4 years ago

8.0.0-next.2

4 years ago

8.0.0-next.1

4 years ago

8.0.0-next.0

4 years ago

7.3.2-next.3

4 years ago

7.3.2-next.2

4 years ago

7.3.2-next.1

4 years ago

7.3.1

4 years ago

7.3.0-next.3

5 years ago

7.3.0-next.2

5 years ago

7.3.0-next.1

5 years ago

7.3.0-next.0

5 years ago

7.2.0

5 years ago

7.0.0

5 years ago

7.1.0

5 years ago