hasStyleResources property

bool hasStyleResources

Indicates if the task's portal item has any associated style resources that override the default style of the vector tile service.

This property will be set to true if the export vector tile task has been loaded and the task's portal item has style resources. The portal item's style resources override the default style of the vector tile service and can be exported as ItemResourceCache.

Implementation

bool get hasStyleResources {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ExportVectorTilesTask_getHasStyleResources(
        _handle, errorHandler);
  });
}