Additional info - I don't need this to be on a map - I just need the shape of the route. Is there anything that can return that shape easily?
The list of coordinates are in an xml document and I'd like to be able to update that XML when I'm heading to a new location. Thoughts?
Edit 1: Thanks for the comment! here's the structure below:
<shape>
<element>42.18462</element>
<element>-88.63731</element>
<element>42.18557</element>
<element>-88.64003</element>
<element>42.18853</element>
<element>-88.64849</element>
<element>42.19017</element>
<element>-88.65314</element>
<element>42.19106</element>
<element>-88.65573</element>
</shape>
Thanks for any thoughts!
Edit 2: One more option -- I can get this as WKID coordinates as well:
<Shape>41.8857613,-87.6230011 41.8857689,-87.6222992 41.8851204,-87.6222916 41.8844986,-87.6222687 41.8844604,-87.6239014 41.8844604,-87.6244278 41.8844604,-87.6251984 41.8844604,-87.6253281 41.8844604,-87.6262283 41.8844604,-87.6264114 41.884491,-87.6279068 41.8844719,-87.6294632 41.8844795,-87.6309204 41.8844719,-87.6316833 </shape>

