onLoadServiceFeatureChannelResponse method
Implementation
void onLoadServiceFeatureChannelResponse(
AGMLFeatureServiceLayer layer,
String response
) {
if(response != AGMLChannelStatusResponseEnum.failure.name) {
_mapServiceLayers.add(AGMLFeatureServiceLayer(
id: response,
url: layer.url,
viewPoint: layer.viewPoint
));
_onChangedMapServiceLayersStreamController.add(_mapServiceLayers);
}
}