getCountryName static method
- Coordinates coords
Get the country name for the specified coordinates (WGS).
Parameters
- IN coords The coordinates
Returns
- Country name as string
Implementation
static String getCountryName(final Coordinates coords) {
final OperationResult resultString = staticMethod(
'MapDetails',
'getCountryName',
args: coords,
);
return resultString['result'];
}