How to draw lines (e.g. google map) in plain HTML, CSS

How can we draw lines (e.g. google map) in standard HTML, CSS for an example offline application?

0
source share
2 answers

The RaphaΓ«l library (vector graphics) for JavaScript can let you do this quite easily:

http://raphaeljs.com/

+5
source

You can not. You should use canvas api.

Methods: MoveTo () LineTo ()

+2
source

All Articles