LocationDisplay constructor

LocationDisplay()

Creates a location display that can be assigned to an ArcGISMapViewController.

Implementation

factory LocationDisplay() {
  _initializeArcGISEnvironmentIfNeeded();
  final handle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_LocationDisplay_create(errorHandler);
  });
  return LocationDisplay._instanceCache.instanceWith(handle);
}