我之前用这种方法浏览服务
layer = new SuperMap.Layer.TiledDynamicRESTLayer("World", "http://x x x x x/iserver/services/map-china400/rest/maps/China", {
transparent: true,
cacheEnabled: true
}, {maxResolution: "auto"});
layer.events.on({"layerInitialized": addLayer});
function addLayer() {
map.addLayer(layer);
map.setCenter(new SuperMap.LonLat(0, 0), 1);
}
然后我把这个服务赋予了权限,只有这个用户能访问
这样之后,之前的方式就不能访问这个服务了,我该用什么方式访问?