Compare commits
No commits in common. "57407d83d3ddad92eaf3a75e489338804e000b80" and "c6d14e6c9c8b824d2bc5657e770a9bc60495985b" have entirely different histories.
57407d83d3
...
c6d14e6c9c
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "farmmaps-lib-app",
|
"name": "farmmaps-lib-app",
|
||||||
"version": "1.1.5",
|
"version": "1.1.4",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"ng": "ng",
|
"ng": "ng",
|
||||||
"start": "ng serve",
|
"start": "ng serve",
|
||||||
@ -19,9 +19,9 @@
|
|||||||
"@angular/platform-browser": "~11.2.14",
|
"@angular/platform-browser": "~11.2.14",
|
||||||
"@angular/platform-browser-dynamic": "~11.2.14",
|
"@angular/platform-browser-dynamic": "~11.2.14",
|
||||||
"@angular/router": "~11.2.14",
|
"@angular/router": "~11.2.14",
|
||||||
"@farmmaps/common": "1.1.4",
|
"@farmmaps/common": "1.1.1-prerelease.2031",
|
||||||
"@farmmaps/common-map": "1.1.4",
|
"@farmmaps/common-map": "1.1.1-prerelease.2031",
|
||||||
"@farmmaps/common-map3d": "1.1.4",
|
"@farmmaps/common-map3d": "1.1.1-prerelease.2031",
|
||||||
"@microsoft/signalr": "^3.1.16",
|
"@microsoft/signalr": "^3.1.16",
|
||||||
"@ng-bootstrap/ng-bootstrap": "^9.0",
|
"@ng-bootstrap/ng-bootstrap": "^9.0",
|
||||||
"@ngrx/effects": "^11.0",
|
"@ngrx/effects": "^11.0",
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { Component, Input, AfterViewInit, ViewChild } from '@angular/core';
|
import { Component, Input, OnInit,ViewChild } from '@angular/core';
|
||||||
import { Feature} from 'ol';
|
import { Feature} from 'ol';
|
||||||
import { Geometry } from 'ol/geom';
|
import { Geometry } from 'ol/geom';
|
||||||
import * as extent from 'ol/extent';
|
import * as extent from 'ol/extent';
|
||||||
@ -10,86 +10,51 @@ import * as style from 'ol/style';
|
|||||||
templateUrl: './feature-thumbnail.component.html',
|
templateUrl: './feature-thumbnail.component.html',
|
||||||
styleUrls: ['./feature-thumbnail.component.scss']
|
styleUrls: ['./feature-thumbnail.component.scss']
|
||||||
})
|
})
|
||||||
export class GeometryThumbnailComponent implements AfterViewInit {
|
export class GeometryThumbnailComponent implements OnInit {
|
||||||
|
|
||||||
|
|
||||||
constructor() { }
|
constructor() { }
|
||||||
|
|
||||||
@ViewChild('canvas') canvas;
|
@ViewChild('canvas') canvas;
|
||||||
@ViewChild('container') container;
|
@ViewChild('container') container;
|
||||||
|
@Input('feature') feature:Feature;
|
||||||
|
|
||||||
private geometry:Geometry = null;
|
ngOnInit(): void {
|
||||||
@Input() set feature(value:Feature) {
|
|
||||||
if(value) {
|
|
||||||
this.geometry = value.getGeometry();
|
|
||||||
} else {
|
|
||||||
this.geometry = null;
|
|
||||||
}
|
|
||||||
this.render(this.canvas,
|
|
||||||
this.geometryStyle,
|
|
||||||
this.geometry,
|
|
||||||
this.width,
|
|
||||||
this.height);
|
|
||||||
};
|
|
||||||
|
|
||||||
private defaultStyle:style.Style = new style.Style({
|
|
||||||
stroke: new style.Stroke({ color: 'black',width:1.5 })
|
|
||||||
});
|
|
||||||
private geometryStyle:style.Style = this.defaultStyle;
|
|
||||||
@Input() set fillColor(value:string) {
|
|
||||||
if(style) {
|
|
||||||
this.geometryStyle = new style.Style({
|
|
||||||
stroke: new style.Stroke({ color: 'black',width:1.5 }),
|
|
||||||
fill: new style.Fill({color: value})
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
this.geometryStyle = this.defaultStyle
|
|
||||||
}
|
|
||||||
this.render(this.canvas,
|
|
||||||
this.geometryStyle,
|
|
||||||
this.geometry,
|
|
||||||
this.width,
|
|
||||||
this.height);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private width:number = 0;
|
render(canvas,width,height,geometry:Geometry) {
|
||||||
private height:number = 0;
|
let renderContext = render.toContext(canvas.getContext( '2d'),{ size: [width, height] });
|
||||||
|
|
||||||
render(canvas,style:style.Style,geometry:Geometry,width:number,height:number) {
|
let strokeStyle = new style.Style({
|
||||||
if(canvas && canvas.nativeElement && geometry && style) {
|
stroke: new style.Stroke({ color: 'black',width:1.5 })
|
||||||
let renderContext = render.toContext(canvas.nativeElement.getContext( '2d'),{ size: [width, height] });
|
});
|
||||||
|
|
||||||
let geom = geometry.clone(),
|
let geom = geometry.clone(),
|
||||||
line = geom.getCoordinates()[0],
|
line = geom.getCoordinates()[0],
|
||||||
e = extent.boundingExtent( line );
|
e = extent.boundingExtent( line );
|
||||||
|
|
||||||
let dxy = extent.getCenter(e),
|
let dxy = extent.getCenter(e),
|
||||||
sxy = [
|
sxy = [
|
||||||
(width - 2 ) / extent.getWidth(e),
|
(width - 2 ) / extent.getWidth(e),
|
||||||
(height - 2 ) / extent.getHeight(e)
|
(height - 2 ) / extent.getHeight(e)
|
||||||
];
|
];
|
||||||
|
|
||||||
let dx = dxy[0],
|
let dx = dxy[0],
|
||||||
dy = dxy[1],
|
dy = dxy[1],
|
||||||
sx = sxy[0],
|
sx = sxy[0],
|
||||||
sy = sxy[1];
|
sy = sxy[1];
|
||||||
|
|
||||||
geom.translate( -dx, -dy );
|
geom.translate( -dx, -dy );
|
||||||
geom.scale( Math.min(sx, sy), -Math.min(sx, sy));
|
geom.scale( Math.min(sx, sy), -Math.min(sx, sy));
|
||||||
geom.translate(width / 2,height / 2 );
|
geom.translate( width / 2, height / 2 );
|
||||||
renderContext.setStyle( style );
|
|
||||||
renderContext.drawGeometry( geom );
|
renderContext.setStyle( strokeStyle );
|
||||||
}
|
renderContext.drawGeometry( geom );
|
||||||
}
|
}
|
||||||
|
|
||||||
ngAfterViewInit() {
|
ngAfterViewInit() {
|
||||||
this.width = this.container.nativeElement.offsetWidth;
|
this.render(this.canvas.nativeElement,
|
||||||
this.height = this.container.nativeElement.offsetHeight;
|
this.container.nativeElement.offsetWidth,
|
||||||
this.render(this.canvas,
|
this.container.nativeElement.offsetHeight,
|
||||||
this.geometryStyle,
|
this.feature.getGeometry());
|
||||||
this.geometry,
|
|
||||||
this.width,
|
|
||||||
this.height);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
{
|
{
|
||||||
"issuer": "http://localhost:8094",
|
"issuer": "https://accounts.test.farmmaps.eu",
|
||||||
"clientId": "farmmapsdev",
|
"clientId": "farmmapsdev",
|
||||||
"audience": "http://localhost:8082/",
|
"audience": "http://localhost:8082",
|
||||||
"requireHttps": false,
|
"requireHttps": true,
|
||||||
"apiEndPoint": "http://localhost:8082",
|
"apiEndPoint": "http://localhost:8082",
|
||||||
"grantType":"code"
|
"grantType":"code"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user