Skip to content
Snippets Groups Projects
Commit 0624c50f authored by Olabarrieta Palacios, Ignacio's avatar Olabarrieta Palacios, Ignacio
Browse files

a

parent 69477f89
No related branches found
No related tags found
No related merge requests found
...@@ -34,7 +34,11 @@ export class BikeTrajectoryService { ...@@ -34,7 +34,11 @@ export class BikeTrajectoryService {
return this.http.get<any>(`${this.apiURL}/get_day?day=`+day); return this.http.get<any>(`${this.apiURL}/get_day?day=`+day);
}*/ }*/
getDay(day:string, weekday:number, day_part:number): Observable<any> { getDay(day:string ): Observable<any> {
return this.http.get<any>(`${this.apiURL}/get_day?day=`+day+`&weekday=`+weekday+`&day_part=`+day_part); return this.http.get<any>(`${this.apiURL}/get_day?day=`+day);
}
get(weekday:number, day_part:number): Observable<any> {
return this.http.get<any>(`${this.apiURL}/get?weekday=`+weekday+`&day_part=`+day_part);
} }
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment