geometry property

ArcGISPoint? geometry

The geometry of a facility.

Gets facility's location using geographical point.

Implementation

ArcGISPoint? get geometry {
  final objectHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_Facility_getGeometry(
      _handle,
      errorHandler,
    );
  });
  return ArcGISPoint._fromHandle(
    objectHandle,
  );
}