CMTA: correct examples, enabled radar

This commit is contained in:
Nick Turskyi 2018-06-03 17:30:14 -05:00 committed by Jannis Redmann
parent 533f8ece3c
commit 50de71b6f4
2 changed files with 5 additions and 5 deletions

View file

@ -6,13 +6,12 @@ const cmtaProfile = require('.')
const client = createClient(cmtaProfile)
// Broadie Oaks to Domain
client.journeys('000002370', '900000024101', {results: 1, polylines: true})
client.journeys('000002370', '000005919', {results: 1, polylines: true})
// client.departures('000002370', {duration: 1})
// client.locations('Westgate', {results: 2})
// client.location('900000042101') // Spichernstr TODO
// client.nearby(52.5137344, 13.4744798, {distance: 60}) TODO
// client.radar(52.52411, 13.41002, 52.51942, 13.41709, {results: 10}) TODO
// client.location('000005534') // Downtown light rail station
// client.nearby(30.266222, -97.746058, {distance: 60})
// client.radar(30.240877, -97.804588, 30.225378, -97.786692, {results: 10})
// .then(([journey]) => {
// const leg = journey.legs[0]
// return client.journeyLeg(leg.id, leg.line.name, {polyline: true})

View file

@ -52,6 +52,7 @@ const cmtaProfile = {
transformReqBody,
formatProducts,
parseProducts: createParseBitmask(modes.allProducts, defaultProducts),
radar: true
}
module.exports = cmtaProfile