using the ArcGIS network Analyst, and having the network dataset, we have created a Geo Processing tool with arcpy and python, generally the steps that we are trying are as follow:
we create the request: arcpy.nax.Route(super().config['network_data_source']
load the stops and barriers: routeRequest.load
then we solve and save the results in a zip and we publish it:
solverResult.saveRouteData(zipFile)
arcpy.na.ShareAsRouteLayers(zipFile,summary="RoutePlanner",tags="RoutePlanner",portal_folder_name=folderName,share_with="EVERYBODY")
so we have the route layer result on our portal and having the url for Navigator with routeitemID we can see the route on Navigator
BUT!! this is not the case always :
every while on Navigator we have this error that says "Unable to calculate route - no tracker!"
is there any clue why this might happen !?
