Some checks failed
FarmMaps.Develop/FarmMapsLib/pipeline/head There was a failure building this commit
19 lines
504 B
TypeScript
19 lines
504 B
TypeScript
import { Component } from '@angular/core';
|
|
import { SimpleGeometryComponent } from './simplegeometry.component';
|
|
import { MultiLineString } from 'ol/geom';
|
|
|
|
@Component({
|
|
selector: 'aol-geometry-multilinestring',
|
|
template: ` <ng-content></ng-content> `,
|
|
standalone: true,
|
|
})
|
|
export class GeometryMultiLinestringComponent extends SimpleGeometryComponent {
|
|
public componentType = 'geometry-multilinestring';
|
|
public instance = new MultiLineString([
|
|
[
|
|
[0, 0],
|
|
[1, 1],
|
|
],
|
|
]);
|
|
}
|