Advertisement
Guest User

Untitled

a guest
Jul 30th, 2015
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. var places = {
  2. NY: [ -74.007124, 40.71455 ],
  3. LA: [ -118.245323, 34.05349 ]
  4. };
  5.  
  6. var route = {
  7. type: "LineString",
  8. coordinates: [
  9. places.NY,
  10. places.LA
  11. ]
  12. };
  13.  
  14. layerElement.append("path")
  15. .datum(route)
  16. .attr("class", "route")
  17. .attr("d", path)
  18. .style('fill', 'none')
  19. .style('stroke', 'red')
  20. .style('stroke-width', '3px');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement