Skip to content

CoordsApi

Method HTTP request
getCoverageLonLatCoord GET coverage/{lon};{lat}/coord
getCoverageLonLatCoordId GET coverage/{lon};{lat}/coord/{id}
getCoverageLonLatCoords GET coverage/{lon};{lat}/coords
getCoverageLonLatCoordsId GET coverage/{lon};{lat}/coords/{id}
getCoverageLonLatUriCoord GET coverage/{lon};{lat}/{uri}/coord
getCoverageLonLatUriCoordId GET coverage/{lon};{lat}/{uri}/coord/{id}
getCoverageLonLatUriCoords GET coverage/{lon};{lat}/{uri}/coords
getCoverageLonLatUriCoordsId GET coverage/{lon};{lat}/{uri}/coords/{id}
getCoverageRegionCoord GET coverage/{region}/coord
getCoverageRegionCoordId GET coverage/{region}/coord/{id}
getCoverageRegionCoords GET coverage/{region}/coords
getCoverageRegionCoordsId GET coverage/{region}/coords/{id}
getCoverageRegionUriCoord GET coverage/{region}/{uri}/coord
getCoverageRegionUriCoordId GET coverage/{region}/{uri}/coord/{id}
getCoverageRegionUriCoords GET coverage/{region}/{uri}/coords
getCoverageRegionUriCoordsId GET coverage/{region}/{uri}/coords/{id}

getCoverageLonLatCoord

Parameters

Name Type Note
lat Double The latitude of where the coord you want to query
lon Double The longitude of where the coord you want to query

Return

DictAddresses

Example

ExpertSdk.getInstance().coordsApi.getCoverageLonLatCoord(
    lat = 0.0,
    lon = 0.0
)

if (response.isSuccessful && response.body() != null) {  
    // Success
    val content = response.body()  
} else {  
    // Error
} 

getCoverageLonLatCoordId

Parameters

Name Type Note
lat Double The latitude of where the coord you want to query
lon Double The longitude of where the coord you want to query
id String Id of the object you want to query

Return

DictAddresses

Example

ExpertSdk.getInstance().coordsApi.getCoverageLonLatCoordId(
    lat = 0.0,
    lon = 0.0,
    id = "id_example"
)

if (response.isSuccessful && response.body() != null) {  
    // Success
    val content = response.body()  
} else {  
    // Error
} 

getCoverageLonLatCoords

Parameters

Name Type Note
lat Double The latitude of where the coord you want to query
lon Double The longitude of where the coord you want to query

Return

DictAddresses

Example

ExpertSdk.getInstance().coordsApi.getCoverageLonLatCoords(
    lat = 0.0,
    lon = 0.0
)

if (response.isSuccessful && response.body() != null) {  
    // Success
    val content = response.body()  
} else {  
    // Error
} 

getCoverageLonLatCoordsId

Parameters

Name Type Note
lat Double The latitude of where the coord you want to query
lon Double The longitude of where the coord you want to query
id String Id of the object you want to query

Return

DictAddresses

Example

ExpertSdk.getInstance().coordsApi.getCoverageLonLatCoordsId(
    lat = 0.0,
    lon = 0.0,
    id = "id_example"
)

if (response.isSuccessful && response.body() != null) {  
    // Success
    val content = response.body()  
} else {  
    // Error
} 

getCoverageLonLatUriCoord

Parameters

Name Type Note
lat Double The latitude of where the coord you want to query
lon Double The longitude of where the coord you want to query
uri String First part of the uri

Return

DictAddresses

Example

ExpertSdk.getInstance().coordsApi.getCoverageLonLatUriCoord(
    lat = 0.0,
    lon = 0.0,
    uri = "uri_example"
)

if (response.isSuccessful && response.body() != null) {  
    // Success
    val content = response.body()  
} else {  
    // Error
} 

getCoverageLonLatUriCoordId

Parameters

Name Type Note
lat Double The latitude of where the coord you want to query
lon Double The longitude of where the coord you want to query
uri String First part of the uri
id String Id of the object you want to query

Return

DictAddresses

Example

ExpertSdk.getInstance().coordsApi.getCoverageLonLatUriCoordId(
    lat = 0.0,
    lon = 0.0,
    uri = "uri_example",
    id = "id_example"
)

if (response.isSuccessful && response.body() != null) {  
    // Success
    val content = response.body()  
} else {  
    // Error
} 

getCoverageLonLatUriCoords

Parameters

Name Type Note
lat Double The latitude of where the coord you want to query
lon Double The longitude of where the coord you want to query
uri String First part of the uri

Return

DictAddresses

Example

ExpertSdk.getInstance().coordsApi.getCoverageLonLatUriCoords(
    lat = 0.0,
    lon = 0.0,
    uri = "uri_example"
)

if (response.isSuccessful && response.body() != null) {  
    // Success
    val content = response.body()  
} else {  
    // Error
} 

getCoverageLonLatUriCoordsId

Parameters

Name Type Note
lat Double The latitude of where the coord you want to query
lon Double The longitude of where the coord you want to query
uri String First part of the uri
id String Id of the object you want to query

Return

DictAddresses

Example

ExpertSdk.getInstance().coordsApi.getCoverageLonLatUriCoordsId(
    lat = 0.0,
    lon = 0.0,
    uri = "uri_example",
    id = "id_example"
)

if (response.isSuccessful && response.body() != null) {  
    // Success
    val content = response.body()  
} else {  
    // Error
} 

getCoverageRegionCoord

Parameters

Name Type Note
region String The region you want to query

Return

DictAddresses

Example

ExpertSdk.getInstance().coordsApi.getCoverageRegionCoord(
    region = "region_example"
)

if (response.isSuccessful && response.body() != null) {  
    // Success
    val content = response.body()  
} else {  
    // Error
} 

getCoverageRegionCoordId

Parameters

Name Type Note
region String The region you want to query
id String Id of the object you want to query

Return

DictAddresses

Example

ExpertSdk.getInstance().coordsApi.getCoverageRegionCoordId(
    region = "region_example",
    id = "id_example"
)

if (response.isSuccessful && response.body() != null) {  
    // Success
    val content = response.body()  
} else {  
    // Error
} 

getCoverageRegionCoords

Parameters

Name Type Note
region String The region you want to query

Return

DictAddresses

Example

ExpertSdk.getInstance().coordsApi.getCoverageRegionCoords(
    region = "region_example"
)

if (response.isSuccessful && response.body() != null) {  
    // Success
    val content = response.body()  
} else {  
    // Error
} 

getCoverageRegionCoordsId

Parameters

Name Type Note
region String The region you want to query
id String Id of the object you want to query

Return

DictAddresses

Example

ExpertSdk.getInstance().coordsApi.getCoverageRegionCoordsId(
    region = "region_example",
    id = "id_example"
)

if (response.isSuccessful && response.body() != null) {  
    // Success
    val content = response.body()  
} else {  
    // Error
} 

getCoverageRegionUriCoord

Parameters

Name Type Note
region String The region you want to query
uri String First part of the uri

Return

DictAddresses

Example

ExpertSdk.getInstance().coordsApi.getCoverageRegionUriCoord(
    region = "region_example",
    uri = "uri_example"
)

if (response.isSuccessful && response.body() != null) {  
    // Success
    val content = response.body()  
} else {  
    // Error
} 

getCoverageRegionUriCoordId

Parameters

Name Type Note
region String The region you want to query
uri String First part of the uri
id String Id of the object you want to query

Return

DictAddresses

Example

ExpertSdk.getInstance().coordsApi.getCoverageRegionUriCoordId(
    region = "region_example",
    uri = "uri_example",
    id = "id_example"
)

if (response.isSuccessful && response.body() != null) {  
    // Success
    val content = response.body()  
} else {  
    // Error
} 

getCoverageRegionUriCoords

Parameters

Name Type Note
region String The region you want to query
uri String First part of the uri

Return

DictAddresses

Example

ExpertSdk.getInstance().coordsApi.getCoverageRegionUriCoords(
    region = "region_example",
    uri = "uri_example"
)

if (response.isSuccessful && response.body() != null) {  
    // Success
    val content = response.body()  
} else {  
    // Error
} 

getCoverageRegionUriCoordsId

Parameters

Name Type Note
region String The region you want to query
uri String First part of the uri
id String Id of the object you want to query

Return

DictAddresses

Example

ExpertSdk.getInstance().coordsApi.getCoverageRegionUriCoordsId(
    region = "region_example",
    uri = "uri_example",
    id = "id_example"
)

if (response.isSuccessful && response.body() != null) {  
    // Success
    val content = response.body()  
} else {  
    // Error
}