Can the service be used with an external system?

1231
5
Jump to solution
06-16-2022 07:21 AM
Labels (1)
UngvárszkyBalázs
New Contributor II

Hi!
Our team would like to test an ADAS system’s performance, by using this service as a route calculator. Is there any option, to extract the turn-by-turn navigation’s output to an external system? In Esri Leafle? or in any other ARCgis API?
So the goal would be for routing messages to not/not just appear on a display, but to be also received in some form by an external system, for example via CAN messages or ethernet packets, or any other way. And if yes, then in what format and with what capabilites?

On the other hand, in what specific hardware and environment can this routing API work?

Thanks in advance!

0 Kudos
1 Solution

Accepted Solutions
JillianStanford
Occasional Contributor III

Leaflet is a client API, it is used to request data from the ArcGIS Platform services and display it to the end user. It's one of many clients - https://developers.arcgis.com/documentation/mapping-apis-and-services/apis-and-sdks/#web-apis. You can also use a non-Esri client as long as it can communicate with REST endpoint services.

The services https://developers.arcgis.com/documentation/mapping-apis-and-services/services/ communicate with the client to provide access to the data and operations such as routing.

 

View solution in original post

5 Replies
JillianStanford
Occasional Contributor III

Hi,

Have you looked at ArcGIS Platform? - https://developers.arcgis.com/documentation/mapping-apis-and-services/arcgis-platform/

You can consume individual REST endpoints for just the services you want. Here are are the output formats - https://developers.arcgis.com/rest/services-reference/enterprise/output-formats.htm

Jill

John-Foster
Esri Contributor

You can try the routing service REST API, it is fully documented here https://developers.arcgis.com/documentation/mapping-apis-and-services/routing/services/routing-servi...

 

--jf
UngvárszkyBalázs
New Contributor II

Thank you, and maybe I missed something, but these output types and behaviour are also true for the Esri Leaflet platfrom? So is it's considered as an ArcGIS Platform as well? 
I'm asking, because it's seems like a different platfrom and I'm not sure if they are also true for Esri Leaflet too.

0 Kudos
JillianStanford
Occasional Contributor III

Leaflet is a client API, it is used to request data from the ArcGIS Platform services and display it to the end user. It's one of many clients - https://developers.arcgis.com/documentation/mapping-apis-and-services/apis-and-sdks/#web-apis. You can also use a non-Esri client as long as it can communicate with REST endpoint services.

The services https://developers.arcgis.com/documentation/mapping-apis-and-services/services/ communicate with the client to provide access to the data and operations such as routing.

 

UngvárszkyBalázs
New Contributor II

Thank you for your answers! You helped us a lot!