polygonBufferDistance property

double polygonBufferDistance

Polygon buffer distance.

The polygon buffer refers to the distance from the road the service area polygon should extend when no other reachable roads are nearby, similar to a line buffer size. This is useful if the network is very sparse and you don't want the service area to cover large areas where there are no features.

Implementation

double get polygonBufferDistance {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ServiceAreaParameters_getPolygonBufferDistance(
        _handle, errorHandler);
  });
}
void polygonBufferDistance=(double value)

Implementation

set polygonBufferDistance(double value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_ServiceAreaParameters_setPolygonBufferDistance(
        _handle, value, errorHandler);
  });
}