supportsTilesOnly property

bool supportsTilesOnly

True if the map service only supports tile requests, false otherwise.

You cannot create an ArcGISMapImageLayer from a service that only supports tile requests.

Implementation

bool get supportsTilesOnly {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_MapServiceCapabilities_getSupportsTilesOnly(
      _handle,
      errorHandler,
    );
  });
}