Skip to content

Commit 09ce87c

Browse files
committed
style: format code
1 parent 97ba298 commit 09ce87c

File tree

54 files changed

+252
-215
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+252
-215
lines changed

projects/ngx-openlayers/src/lib/controls/control.component.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ import { ContentComponent } from '../content.component';
55

66
@Component({
77
selector: 'aol-control',
8-
template: `<ng-content></ng-content>`,
8+
template: `
9+
<ng-content></ng-content>
10+
`,
911
})
1012
export class ControlComponent implements OnInit, OnDestroy {
1113
public componentType = 'control';

projects/ngx-openlayers/src/lib/controls/fullscreen.component.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ import { MapComponent } from '../map.component';
44

55
@Component({
66
selector: 'aol-control-fullscreen',
7-
template: `<ng-content></ng-content>`,
7+
template: `
8+
<ng-content></ng-content>
9+
`,
810
})
911
export class ControlFullScreenComponent implements OnInit, OnDestroy {
1012
instance: control.FullScreen;

projects/ngx-openlayers/src/lib/controls/overviewmap.component.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ import { MapComponent } from '../map.component';
44

55
@Component({
66
selector: 'aol-control-overviewmap',
7-
template: `<ng-content></ng-content>`,
7+
template: `
8+
<ng-content></ng-content>
9+
`,
810
})
911
export class ControlOverviewMapComponent implements OnInit, OnDestroy {
1012
instance: control.OverviewMap;

projects/ngx-openlayers/src/lib/controls/rotate.component.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ import { MapComponent } from '../map.component';
44

55
@Component({
66
selector: 'aol-control-rotate',
7-
template: `<ng-content></ng-content>`,
7+
template: `
8+
<ng-content></ng-content>
9+
`,
810
})
911
export class ControlRotateComponent implements OnInit, OnDestroy {
1012
instance: control.Rotate;

projects/ngx-openlayers/src/lib/controls/scaleline.component.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ import { MapComponent } from '../map.component';
44

55
@Component({
66
selector: 'aol-control-scaleline',
7-
template: `<ng-content></ng-content>`,
7+
template: `
8+
<ng-content></ng-content>
9+
`,
810
})
911
export class ControlScaleLineComponent implements OnInit, OnDestroy {
1012
instance: control.ScaleLine;

projects/ngx-openlayers/src/lib/controls/zoom.component.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ import { MapComponent } from '../map.component';
44

55
@Component({
66
selector: 'aol-control-zoom',
7-
template: `<ng-content></ng-content>`,
7+
template: `
8+
<ng-content></ng-content>
9+
`,
810
})
911
export class ControlZoomComponent implements OnInit, OnDestroy {
1012
instance: control.Zoom;

projects/ngx-openlayers/src/lib/controls/zoomslider.component.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ import { MapComponent } from '../map.component';
44

55
@Component({
66
selector: 'aol-control-zoomslider',
7-
template: `<ng-content></ng-content>`,
7+
template: `
8+
<ng-content></ng-content>
9+
`,
810
})
911
export class ControlZoomSliderComponent implements OnInit, OnDestroy {
1012
instance: control.ZoomSlider;

projects/ngx-openlayers/src/lib/controls/zoomtoextent.component.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ import { MapComponent } from '../map.component';
44

55
@Component({
66
selector: 'aol-control-zoomtoextent',
7-
template: `<ng-content></ng-content>`,
7+
template: `
8+
<ng-content></ng-content>
9+
`,
810
})
911
export class ControlZoomToExtentComponent implements OnInit, OnDestroy {
1012
instance: control.ZoomToExtent;

projects/ngx-openlayers/src/lib/coordinate.component.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ import { OverlayComponent } from './overlay.component';
77

88
@Component({
99
selector: 'aol-coordinate',
10-
template: `<div class="aol-coordinate"></div>`,
10+
template: `
11+
<div class="aol-coordinate"></div>
12+
`,
1113
})
1214
export class CoordinateComponent implements OnChanges {
1315
private host: any;
@@ -65,7 +67,9 @@ export class CoordinateComponent implements OnChanges {
6567

6668
@Component({
6769
selector: 'aol-collection-coordinates',
68-
template: `<div class="aol-collection-coordinates"></div>`,
70+
template: `
71+
<div class="aol-collection-coordinates"></div>
72+
`,
6973
})
7074
export class CollectionCoordinatesComponent implements OnChanges {
7175
private host: any;

projects/ngx-openlayers/src/lib/feature.component.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ import { SourceVectorComponent } from './sources/vector.component';
44

55
@Component({
66
selector: 'aol-feature',
7-
template: `<ng-content></ng-content>`,
7+
template: `
8+
<ng-content></ng-content>
9+
`,
810
})
911
export class FeatureComponent implements OnInit, OnDestroy, OnChanges {
1012
public componentType = 'feature';

0 commit comments

Comments
 (0)