GET api/v2/kilometricpoint/department/{dep}/road/{road}/pr/{pr}
Retourne la liste des points de repères kilométrique d'une route donnée
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| dep | integer |
Required |
|
| road | string |
Required |
|
| pr | string |
Required |
Body Parameters
None.
Response Information
Resource Description
KilometricPointGps| Name | Description | Type | Additional information |
|---|---|---|---|
| Latitude | decimal number |
None. |
|
| Longitude | decimal number |
None. |
|
| IsUsePrLower | boolean |
None. |
|
| IsPrTwoNull | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Latitude": 1.1,
"Longitude": 2.1,
"IsUsePrLower": true,
"IsPrTwoNull": true
}
application/xml, text/xml
Sample:
<KilometricPointGps xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Vehizen.Domain.Dto.Contravention"> <IsPrTwoNull>true</IsPrTwoNull> <IsUsePrLower>true</IsUsePrLower> <Latitude>1.1</Latitude> <Longitude>2.1</Longitude> </KilometricPointGps>