fix velov
This commit is contained in:
parent
be365c87e6
commit
846956dff5
1 changed files with 2 additions and 2 deletions
|
@ -94,8 +94,8 @@ class App extends React.Component<{}, IAppState> {
|
||||||
method: "GET",
|
method: "GET",
|
||||||
headers: headers
|
headers: headers
|
||||||
});
|
});
|
||||||
const velovInfoPromise = http<IStationsInfoWrapper>("https://transport.data.gouv.fr/gbfs/lyon/station_information.json", {method: "GET"});
|
const velovInfoPromise = http<IStationsInfoWrapper>("https://download.data.grandlyon.com/files/rdata/jcd_jcdecaux.jcdvelov/station_information.json", {method: "GET"});
|
||||||
const velovStatusPromise = http<IStationsStatusWrapper>("https://transport.data.gouv.fr/gbfs/lyon/station_status.json", {method: "GET"});
|
const velovStatusPromise = http<IStationsStatusWrapper>("https://download.data.grandlyon.com/files/rdata/jcd_jcdecaux.jcdvelov/station_status.json", {method: "GET"});
|
||||||
Promise.all([tclPromise, velovInfoPromise, velovStatusPromise]).then(values => {
|
Promise.all([tclPromise, velovInfoPromise, velovStatusPromise]).then(values => {
|
||||||
let tcl = values[0];
|
let tcl = values[0];
|
||||||
let velovInfo = values[1];
|
let velovInfo = values[1];
|
||||||
|
|
Loading…
Reference in a new issue