- Se agregó la opcion de especifiar un punto como destino final (parametro f en el URL)

This commit is contained in:
2024-04-23 03:42:10 -06:00
parent 133b34606e
commit 758916a1da
6 changed files with 45 additions and 19 deletions

View File

@@ -49,7 +49,7 @@ Sub Handle(req As ServletRequest, resp As ServletResponse)
End Try
Else
resp.ContentType = "text/html"
resp.Write("Hay un error en la solicitud, son necesarios los parametros:<br>* r - La ruta<br>* a - El almacen<br>* c - id_cliente,lon,lat separadas por punto y coma.<br>* m - La matriz a usar LOCAL u OSRM (Opcional, default local)") 'this file will be loaded from the www folder
resp.Write("Hay un error en la solicitud, es necesario el parametro:<br>* b - 1") 'this file will be loaded from the www folder
End If
End Sub