Skip to content

Commit eae7165

Browse files
authored
Merge pull request #1069 from IgniteUI/sstoychev/fix-merge-conflicts
Sstoychev/fix merge conflicts
2 parents cafbcd7 + 452df90 commit eae7165

File tree

1 file changed

+2
-1
lines changed
  • samples/maps/geo-map/display-azure-imagery/src

1 file changed

+2
-1
lines changed

samples/maps/geo-map/display-azure-imagery/src/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ export class MapDisplayImageryAzureTiles {
3333
private azureKeyInput!: IgcInputComponent;
3434
private submitButton!: IgcButtonComponent;
3535
private resetButton!: IgcButtonComponent;
36+
3637
private mapImage!: HTMLImageElement;
3738
private mapStyleSelect!: IgcSelectComponent;
3839

@@ -77,6 +78,7 @@ export class MapDisplayImageryAzureTiles {
7778
this.azureKeyInput = document.getElementById('azureKeyInput') as IgcInputComponent;
7879
this.submitButton = document.getElementById('submitButton') as IgcButtonComponent;
7980
this.resetButton = document.getElementById('resetButton') as IgcButtonComponent;
81+
8082
this.mapImage = document.getElementById('mapImage') as HTMLImageElement;
8183
this.map = document.getElementById('azureMap') as IgcGeographicMapComponent;
8284
this.imagerySeries = document.getElementById('imagerySeries') as IgcGeographicTileSeriesComponent;
@@ -104,7 +106,6 @@ export class MapDisplayImageryAzureTiles {
104106
// Event handlers
105107
this.submitButton.addEventListener('click', () => this.onSubmit());
106108
this.resetButton.addEventListener('click', () => this.onReset());
107-
108109
this.mapStyleSelect.addEventListener('igcChange', (evt: any) => this.onStyleChange(evt.detail.value));
109110
}
110111

0 commit comments

Comments
 (0)