GET api/Delimitation/Latitude/{Latitude}/Longitude/{Longitude}

Returns the delimitation based on Geographic Coordinates

Request Information

Parameters

NameDescriptionAdditional information
Latitude
The GPS latitude

Define this parameter in the request URI.

Longitude
The GPS longitude

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
[
  {
    "ProvinceID": 1,
    "Province": "sample string 2",
    "MunicipalityID": 3,
    "Municipality": "sample string 4",
    "WardID": 5,
    "VDNumber": 6
  },
  {
    "ProvinceID": 1,
    "Province": "sample string 2",
    "MunicipalityID": 3,
    "Municipality": "sample string 4",
    "WardID": 5,
    "VDNumber": 6
  },
  {
    "ProvinceID": 1,
    "Province": "sample string 2",
    "MunicipalityID": 3,
    "Municipality": "sample string 4",
    "WardID": 5,
    "VDNumber": 6
  }
]

application/xml, text/xml

Sample:
<ArrayOfDelimitation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IECService.Models">
  <Delimitation>
    <Municipality>sample string 4</Municipality>
    <MunicipalityID>3</MunicipalityID>
    <Province>sample string 2</Province>
    <ProvinceID>1</ProvinceID>
    <VDNumber>6</VDNumber>
    <WardID>5</WardID>
  </Delimitation>
  <Delimitation>
    <Municipality>sample string 4</Municipality>
    <MunicipalityID>3</MunicipalityID>
    <Province>sample string 2</Province>
    <ProvinceID>1</ProvinceID>
    <VDNumber>6</VDNumber>
    <WardID>5</WardID>
  </Delimitation>
  <Delimitation>
    <Municipality>sample string 4</Municipality>
    <MunicipalityID>3</MunicipalityID>
    <Province>sample string 2</Province>
    <ProvinceID>1</ProvinceID>
    <VDNumber>6</VDNumber>
    <WardID>5</WardID>
  </Delimitation>
</ArrayOfDelimitation>