@@ -100,7 +100,7 @@ describe('maplibregl-webmap3.0', () => {
100
100
} ) ;
101
101
mapstudioWebmap = new WebMap ( id , {
102
102
server : server ,
103
- iportalServiceProxyUrl : 'initialize_raster'
103
+ iportalServiceProxyUrlPrefix : 'initialize_raster'
104
104
} ) ;
105
105
expect ( mapstudioWebmap . credentialKey ) . toBeUndefined ( ) ;
106
106
expect ( mapstudioWebmap . credentialValue ) . toBeUndefined ( ) ;
@@ -167,7 +167,7 @@ describe('maplibregl-webmap3.0', () => {
167
167
mapstudioWebmap = new WebMapV3 ( mapInfo , {
168
168
server : server ,
169
169
target : 'map' ,
170
- iportalServiceProxyUrl : 'mapId is JSON'
170
+ iportalServiceProxyUrlPrefix : 'mapId is JSON'
171
171
} ) ;
172
172
mapstudioWebmap . initializeMap ( mapInfo ) ;
173
173
@@ -238,7 +238,7 @@ describe('maplibregl-webmap3.0', () => {
238
238
mapstudioWebmap = new WebMapV3 ( nextMapInfo , {
239
239
server : server ,
240
240
target : 'map' ,
241
- iportalServiceProxyUrl : 'projection is 4490 and include maplibre-gl-enhance'
241
+ iportalServiceProxyUrlPrefix : 'projection is 4490 and include maplibre-gl-enhance'
242
242
} ) ;
243
243
mapstudioWebmap . initializeMap ( nextMapInfo ) ;
244
244
@@ -328,7 +328,7 @@ describe('maplibregl-webmap3.0', () => {
328
328
mapstudioWebmap = new WebMapV3 ( mapInfo , {
329
329
server : server ,
330
330
target : 'map' ,
331
- iportalServiceProxyUrl : 'overlayLayersManager'
331
+ iportalServiceProxyUrlPrefix : 'overlayLayersManager'
332
332
} ) ;
333
333
mapstudioWebmap . initializeMap ( mapInfo ) ;
334
334
@@ -486,7 +486,7 @@ describe('maplibregl-webmap3.0', () => {
486
486
mapstudioWebmap = new WebMapV3 ( mapInfo , {
487
487
server : server ,
488
488
target : 'map' ,
489
- iportalServiceProxyUrl : 'exclude source and layer'
489
+ iportalServiceProxyUrlPrefix : 'exclude source and layer'
490
490
} ) ;
491
491
mapstudioWebmap . initializeMap ( mapInfo ) ;
492
492
@@ -700,14 +700,14 @@ describe('maplibregl-webmap3.0', () => {
700
700
} ) ;
701
701
const spyTest = spyOn ( MapManagerUtil , 'default' ) . and . callFake ( mbglmap ) ;
702
702
const mapInfo = JSON . parse ( mapstudioWebMap_raster ) ;
703
- const iportalServiceProxyUrl = 'http://localhost:8195/portalproxy' ;
703
+ const iportalServiceProxyUrlPrefix = 'http://localhost:8195/portalproxy' ;
704
704
const tileCustomRequestHeaders = { 'Authorization' : 'test token' } ;
705
705
mapstudioWebmap = new WebMap ( mapInfo , {
706
706
server : server ,
707
707
target : 'map' ,
708
- iportalServiceProxyUrl ,
708
+ iportalServiceProxyUrlPrefix ,
709
709
tileTransformRequest : ( url ) => {
710
- if ( url . includes ( iportalServiceProxyUrl ) ) {
710
+ if ( url . includes ( iportalServiceProxyUrlPrefix ) ) {
711
711
return { headers : tileCustomRequestHeaders } ;
712
712
}
713
713
}
0 commit comments