VE - mappoint style routes (possible in VE?)
Hello,
I'm typically generating routes that have 8-12 stops on them. Using MapPoint Web Services this was no problem. Is there a way to generate a route (i'll provide the ordering) of more than 2 points connected by a driving route (green marked road). Also, it would be great if this could be done WITHOUT all of those interim little red directional points. These really bug when there's alot of points already on the map.
Thanks,
Jeff
Being able to specify multiple stops on a route is supposedly something they're working on now for future release. It is something I need to migrate my application from MapPoint to VE also.
Here is what I did to get rid of directional points:
Added this function to the javascript
VEMap.prototype.DeleteRoutePins=function()
{
VEMap.ValidateState();
this.RemoveRoutePins();
}
Then called map.DeleteRouePins as the callback function on the GetRoute call.
Thanks Ruprect. Those route pins were quite annoying.
I'm new to VE and have been using the VE SDK documentation for help, so pardon me asking... How did you find out about the RemoveRoutePins function? Is it documented somewhere with a list of other functions?
Thanks,