vote up 2 vote down star

Is it possible to draw a road using bing maps js api? Ideally I would supply two georeference points and the trajectory/road would be always on the same road.

Basically, I want to highlight a road.

flag

76% accept rate

2 Answers

vote up 2 vote down check

Use map.GetDirections(new VELatLong(lat,lon),new VELatLong(lat,lon))

link|flag
vote up 2 vote down

Take a look at the "Get a multi-point route" sample in the interactive SDK under Get a multi-point route and directions.

This is the relevant function call:

map.GetDirections(["Microsoft", "Everett WA", "Bellingham WA"]);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.