D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
johan
Full window
Github gist
HTML5 GPS plotter
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>HTML5 GPS Plotter</title> <meta name="viewport" content="initial-scale=1.0, user-scalable=no"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black"> <link rel="stylesheet" href="style.css"> </head> <body> <div id="map"></div> <script src="https://maps.googleapis.com/maps/api/js?sensor=true"></script> <script src="index.js"></script> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-33539406-1']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.async = true; ga.src = ('https:' == location.protocol ? 'https://ssl' : 'https://www') + '.google-analytics.com/ga.js'; var oy = document.getElementsByTagName('script')[0]; oy.parentNode.insertBefore(ga, oy); })(); </script> </body> </html>
https://maps.googleapis.com/maps/api/js?sensor=true