Service API
Address
POI
Route
Map
Indoor
Dynamic Information
Campaign
Demography
Traffic
User Data
Risk
Analysis
- Spatial Analysis
- Add Service Area
- Add Buffered Line To User Region
- Add Buffered Route To User Region
- Add Route To User Line
LocationBox API
Add Route To User Line Service combine special route and line on database that user gave based on criterias which you can find below.
AddRouteToUserLine request must look like this:
http://www.locationbox.com.tr/locationbox/services?Key=key&Cmd=AddRouteToUserLine&Typ=output_format&Id=line_id&PathId=path_id
Key
: LocationBox user key. (Register for user key) Cmd
: LocationBox service name. (AddRouteToUserLine)Typ
: Response format. (XML or JSON)Id
: ID of line.Name
: Name of line.PathId
: ID of path.String1...String9
: Available parameters for user data in string format. Number1...Number9
: Available parameters for user data in number format. AddRouteToUserLine response returns in XML format when the Typ
parameter is set as "XML".
Below is an example for a AddRouteToUserLine request which is expected to return a response in XML format.
http://www.locationbox.com.tr/locationbox/services?Key=key&Cmd=AddRouteToUserLine&Typ=XML&Id=12&PathId=45454
&String1=www.infotech.com.tr&String2=kurumsal@infotech.com.tr&Number1=1&Number2=2
The response will be as following:
<response>
<transactionid>LBS_37538710</transactionid>
<status>0</status>
<id>17</id>
<errno />
<errdesc />
</response>
AddRouteToUserLine response returns in JSON format when the Typ
parameter is set as "JSON".
Below is an example for a AddRouteToUserLine request which is expected to return a response in JSON format.
http://www.locationbox.com.tr/locationbox/services?Key=key&Cmd=AddRouteToUserLine&Typ=JSON&Id=12&PathId=45454
&String1=www.infotech.com.tr&String2=kurumsal@infotech.com.tr&Number1=1&Number2=2
The response will be as following:
{
"transactionid": "LBS_50372229",
"status": 0,
"id": "17"
}
transactionid
: The id of response given by LocationBox Service. Every response can be tracked using transactionid when necessary.status
: Response format. (XML or JSON)Status Codes
0 -- Success
1 -- Fail
errno
: Error codeerrdesc
: Error definitionError Codes
10001 Error processing your request. Please try again soon.
Cmd parameter is misspelled/not found.
10011 Error processing your request. Please check the Cmd parameter.
Cmd is not specified.
10012 Error processing your request. Please check the Key parameter.
Key is not specified.
10013 Error processing your request. Please check the Key parameter.
Key is invalid.
20012 No data found.