File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
samples/maps/geo-map/display-azure-imagery/src Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments