Drawing on the map

I would like to have some points defined on the map, and would like to join two points by clicking on them. Basically, the functionality is to identify locations on the map and connect them in a single line. For some reason, I cannot use the google API and would like to achieve this using JavaScript.

Thanks in advance, Milan

+1
source share
1 answer

Javascript using HTML itself cannot create a line (at any angle) between two points. But it is possible:

  • Javascript , (SVG VML), Google , , ​​ .. ()
  • HTML5 CANVAS ( excanvas IE) ()
  • "" html ()
+2

All Articles