fixedImageWidth property

int fixedImageWidth

The width of map images the service is capable of producing (in pixels).

If the value is nonzero, this indicates that the server can only produce map images at the fixed width. If the value is zero, the server can produce maps of arbitrary dimensions.

Implementation

int get fixedImageWidth {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_WMSLayerInfo_getFixedImageWidth(
      _handle,
      errorHandler,
    );
  });
}