getPointMapCoverage static method

MapCoverage getPointMapCoverage(
  1. Coordinates coords
)

Get the map coverage for the region specified by WGS84 coordinate.

This function checks the map coverage status using only the information available on the device. No server connection is performed. This check is performed quickly.

Parameters

  • IN coords The coordinate

Returns

Implementation

static MapCoverage getPointMapCoverage(final Coordinates coords) {
  final OperationResult resultString = staticMethod(
    'MapDetails',
    'getPointMapCoverage',
    args: coords,
  );

  return MapCoverageExtension.fromId(resultString['result']);
}