Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OpenLayers 5 #183

Merged
merged 1 commit into from
Apr 9, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ node_modules
/libpeerconnection.log
npm-debug.log
yarn-error.log
yarn.lock
testem.log
/typings

Expand Down
2 changes: 1 addition & 1 deletion angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
],
"styles": [
"src/styles.css",
"projects/ngx-openlayers/node_modules/openlayers/dist/ol.css"
"node_modules/ol/ol.css"
],
"scripts": []
},
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"geojson": "^0.5.0",
"hammer-timejs": "^1.1.0",
"hammerjs": "^2.0.8",
"ol": "^5.3.1",
"rxjs": "6.3.3",
"zone.js": "^0.8.26"
},
Expand Down
3 changes: 0 additions & 3 deletions projects/ngx-openlayers/ng-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
"$schema": "../../node_modules/ng-packagr/ng-package.schema.json",
"dest": "../../dist/ngx-openlayers",
"deleteDestPath": false,
"whitelistedNonPeerDependencies": [
"openlayers", "@types/openlayers"
],
"lib": {
"entryFile": "src/public_api.ts"
}
Expand Down
8 changes: 3 additions & 5 deletions projects/ngx-openlayers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,8 @@
},
"peerDependencies": {
"@angular/common": "^6.0.0-rc.0 || ^6.0.0 || ^7.0.0",
"@angular/core": "^6.0.0-rc.0 || ^6.0.0 || ^7.0.0"
"@angular/core": "^6.0.0-rc.0 || ^6.0.0 || ^7.0.0",
"ol": "^5.3.1"
},
"dependencies": {
"@types/openlayers": "4.3.x || 4.4.x",
"openlayers": "4.3.x || 4.4.x"
}
"dependencies": {}
}
2 changes: 1 addition & 1 deletion projects/ngx-openlayers/src/lib/attribution.component.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component, ElementRef, OnInit } from '@angular/core';
import { Attribution } from 'openlayers';
import { Attribution } from 'ol/control';

@Component({
selector: 'aol-attribution',
Expand Down
2 changes: 1 addition & 1 deletion projects/ngx-openlayers/src/lib/attributions.component.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { AfterViewInit, Component, ContentChildren, Host, QueryList } from '@angular/core';
import { Attribution } from 'openlayers';
import { Attribution } from 'ol/control';
import { SourceComponent } from './sources/source.component';
import { AttributionComponent } from './attribution.component';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component, ElementRef, Input, OnDestroy, OnInit } from '@angular/core';
import { control } from 'openlayers';
import { Attribution } from 'ol/control';
import { MapComponent } from '../map.component';

@Component({
Expand All @@ -8,7 +8,7 @@ import { MapComponent } from '../map.component';
})
export class ControlAttributionComponent implements OnInit, OnDestroy {
public componentType = 'control';
instance: control.Attribution;
instance: Attribution;
target: Element;
@Input()
collapsible: boolean;
Expand All @@ -18,7 +18,7 @@ export class ControlAttributionComponent implements OnInit, OnDestroy {
ngOnInit() {
this.target = this.element.nativeElement;
// console.log('ol.control.Attribution init: ', this);
this.instance = new control.Attribution(this);
this.instance = new Attribution(this);
this.map.instance.addControl(this.instance);
}

Expand Down
6 changes: 3 additions & 3 deletions projects/ngx-openlayers/src/lib/controls/control.component.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component, ContentChild, OnDestroy, OnInit } from '@angular/core';
import { control } from 'openlayers';
import { Control } from 'ol/control';
import { MapComponent } from '../map.component';
import { ContentComponent } from '../content.component';

Expand All @@ -11,7 +11,7 @@ import { ContentComponent } from '../content.component';
})
export class ControlComponent implements OnInit, OnDestroy {
public componentType = 'control';
instance: control.Control;
instance: Control;
element: Element;
@ContentChild(ContentComponent)
content: ContentComponent;
Expand All @@ -21,7 +21,7 @@ export class ControlComponent implements OnInit, OnDestroy {
ngOnInit() {
if (this.content) {
this.element = this.content.elementRef.nativeElement;
this.instance = new control.Control(this);
this.instance = new Control(this);
this.map.instance.addControl(this.instance);
}
}
Expand Down
17 changes: 11 additions & 6 deletions projects/ngx-openlayers/src/lib/controls/default.component.ts
Original file line number Diff line number Diff line change
@@ -1,31 +1,36 @@
import { Component, OnDestroy, OnInit, Input } from '@angular/core';
import { control, Collection } from 'openlayers';
import { Control, defaults } from 'ol/control';
import { Collection } from 'ol';
import { Options as AttributionOptions } from 'ol/control/Attribution';
import { Options as RotateOptions } from 'ol/control/Rotate';
import { Options as ZoomOptions } from 'ol/control/Zoom';

import { MapComponent } from '../map.component';

@Component({
selector: 'aol-control-defaults',
template: '',
})
export class DefaultControlComponent implements OnInit, OnDestroy {
instance: Collection<control.Control>;
instance: Collection<Control>;
@Input()
attribution: boolean;
@Input()
attributionOptions: olx.control.AttributionOptions;
attributionOptions: AttributionOptions;
@Input()
rotate: boolean;
@Input()
rotateOptions: olx.control.RotateOptions;
rotateOptions: RotateOptions;
@Input()
zoom: boolean;
@Input()
zoomOptions: olx.control.ZoomOptions;
zoomOptions: ZoomOptions;

constructor(private map: MapComponent) {}

ngOnInit() {
// console.log('ol.control.defaults init: ', this);
this.instance = control.defaults(this);
this.instance = defaults(this);
this.instance.forEach(c => this.map.instance.addControl(c));
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component, Input, OnDestroy, OnInit } from '@angular/core';
import { control } from 'openlayers';
import { FullScreen } from 'ol/control';
import { MapComponent } from '../map.component';

@Component({
Expand All @@ -9,7 +9,7 @@ import { MapComponent } from '../map.component';
`,
})
export class ControlFullScreenComponent implements OnInit, OnDestroy {
instance: control.FullScreen;
instance: FullScreen;

@Input()
className: string;
Expand All @@ -27,7 +27,7 @@ export class ControlFullScreenComponent implements OnInit, OnDestroy {
}

ngOnInit() {
this.instance = new control.FullScreen(this);
this.instance = new FullScreen(this);
this.map.instance.addControl(this.instance);
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
import { Component, ElementRef, Input, OnDestroy, OnInit } from '@angular/core';
import { control, CoordinateFormatType, ProjectionLike } from 'openlayers';
import MousePosition from 'ol/control/MousePosition';
import { MapComponent } from '../map.component';
import { CoordinateFormat } from 'ol/coordinate';
import { ProjectionLike } from 'ol/proj';

@Component({
selector: 'aol-control-mouseposition',
template: ``,
})
export class ControlMousePositionComponent implements OnInit, OnDestroy {
instance: control.MousePosition;
instance: MousePosition;
@Input()
coordinateFormat: CoordinateFormatType;
coordinateFormat: CoordinateFormat;
@Input()
projection: ProjectionLike;
target: Element;
Expand All @@ -19,7 +21,7 @@ export class ControlMousePositionComponent implements OnInit, OnDestroy {
ngOnInit() {
this.target = this.element.nativeElement;
// console.log('ol.control.MousePosition init: ', this);
this.instance = new control.MousePosition(this);
this.instance = new MousePosition(this);
this.map.instance.addControl(this.instance);
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import { Component, Input, OnDestroy, OnInit } from '@angular/core';
import { control, View, layer } from 'openlayers';
import { Layer } from 'ol/layer';
import { View } from 'ol';
import { OverviewMap } from 'ol/control';
import { MapComponent } from '../map.component';

@Component({
Expand All @@ -9,7 +11,7 @@ import { MapComponent } from '../map.component';
`,
})
export class ControlOverviewMapComponent implements OnInit, OnDestroy {
instance: control.OverviewMap;
instance: OverviewMap;
@Input()
collapsed: boolean;
@Input()
Expand All @@ -19,7 +21,7 @@ export class ControlOverviewMapComponent implements OnInit, OnDestroy {
@Input()
label: string;
@Input()
layers: layer.Layer[];
layers: Layer[];
@Input()
target: Element;
@Input()
Expand All @@ -32,7 +34,7 @@ export class ControlOverviewMapComponent implements OnInit, OnDestroy {
}

ngOnInit() {
this.instance = new control.OverviewMap(this);
this.instance = new OverviewMap(this);
this.map.instance.addControl(this.instance);
}

Expand Down
6 changes: 3 additions & 3 deletions projects/ngx-openlayers/src/lib/controls/rotate.component.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component, Input, OnDestroy, OnInit } from '@angular/core';
import { control } from 'openlayers';
import { Rotate } from 'ol/control';
import { MapComponent } from '../map.component';

@Component({
Expand All @@ -9,7 +9,7 @@ import { MapComponent } from '../map.component';
`,
})
export class ControlRotateComponent implements OnInit, OnDestroy {
instance: control.Rotate;
instance: Rotate;

@Input()
className: string;
Expand All @@ -27,7 +27,7 @@ export class ControlRotateComponent implements OnInit, OnDestroy {
}

ngOnInit() {
this.instance = new control.Rotate(this);
this.instance = new Rotate(this);
this.map.instance.addControl(this.instance);
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component, Input, OnDestroy, OnInit } from '@angular/core';
import { control } from 'openlayers';
import { ScaleLine } from 'ol/control';
import { MapComponent } from '../map.component';

@Component({
Expand All @@ -9,7 +9,7 @@ import { MapComponent } from '../map.component';
`,
})
export class ControlScaleLineComponent implements OnInit, OnDestroy {
instance: control.ScaleLine;
instance: ScaleLine;
@Input()
units: string;

Expand All @@ -18,7 +18,7 @@ export class ControlScaleLineComponent implements OnInit, OnDestroy {
}

ngOnInit() {
this.instance = new control.ScaleLine(this);
this.instance = new ScaleLine(this);
this.map.instance.addControl(this.instance);
}

Expand Down
6 changes: 3 additions & 3 deletions projects/ngx-openlayers/src/lib/controls/zoom.component.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component, Input, OnDestroy, OnInit } from '@angular/core';
import { control } from 'openlayers';
import { Zoom } from 'ol/control';
import { MapComponent } from '../map.component';

@Component({
Expand All @@ -9,7 +9,7 @@ import { MapComponent } from '../map.component';
`,
})
export class ControlZoomComponent implements OnInit, OnDestroy {
instance: control.Zoom;
instance: Zoom;

@Input()
duration: number;
Expand All @@ -29,7 +29,7 @@ export class ControlZoomComponent implements OnInit, OnDestroy {
}

ngOnInit() {
this.instance = new control.Zoom(this);
this.instance = new Zoom(this);
this.map.instance.addControl(this.instance);
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component, Input, OnDestroy, OnInit } from '@angular/core';
import { control } from 'openlayers';
import { ZoomSlider } from 'ol/control';
import { MapComponent } from '../map.component';

@Component({
Expand All @@ -9,7 +9,7 @@ import { MapComponent } from '../map.component';
`,
})
export class ControlZoomSliderComponent implements OnInit, OnDestroy {
instance: control.ZoomSlider;
instance: ZoomSlider;

@Input()
className: string;
Expand All @@ -25,7 +25,7 @@ export class ControlZoomSliderComponent implements OnInit, OnDestroy {
}

ngOnInit() {
this.instance = new control.ZoomSlider(this);
this.instance = new ZoomSlider(this);
this.map.instance.addControl(this.instance);
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { Component, Input, OnDestroy, OnInit } from '@angular/core';
import { control, Extent } from 'openlayers';
import { ZoomToExtent } from 'ol/control';
import { MapComponent } from '../map.component';
import { Extent } from 'ol/extent';

@Component({
selector: 'aol-control-zoomtoextent',
Expand All @@ -9,7 +10,7 @@ import { MapComponent } from '../map.component';
`,
})
export class ControlZoomToExtentComponent implements OnInit, OnDestroy {
instance: control.ZoomToExtent;
instance: ZoomToExtent;

@Input()
className: string;
Expand All @@ -25,7 +26,7 @@ export class ControlZoomToExtentComponent implements OnInit, OnDestroy {
}

ngOnInit() {
this.instance = new control.ZoomToExtent(this);
this.instance = new ZoomToExtent(this);
this.map.instance.addControl(this.instance);
}

Expand Down
Loading