I have created an app that works perfectly with driving and walking for the Bing Routes API between two latitudes and longitudes. Here is the structure:
http://dev.virtualearth.net/REST/V1/driving?wp.0=${employee.latitude},${employee.longitude}&wp.1=${client.latitude},${client.longitude}&dateTime=12:00:00&distanceUnit=mi&output=json&key=${process.env.BING_MAPS_KEY}`,
Whenever I replace driving with walking, it works. But whenever I replace driving with "transit", it doesnt! This is supposed to be used for NYC, so I don't know what to do. I am only limiting my request to two waypoints like the documentation says.
Let me know if there is something specific I have to do for the transit search to work. Thank you.