getProviderName static method
Get the name of the specified provider.
Parameters
- IN id The provider ID as MapProviderId
Returns
- The name of the specified provider.
Implementation
static String getProviderName(final MapProviderId id) {
final OperationResult resultString = staticMethod(
'MapDetails',
'getProviderName',
args: id.id,
);
return resultString['result'];
}