-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
44 lines (38 loc) · 3.04 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en-us">
<meta charset="utf-8">
<title>SVG Strip Map Generator</title>
<link rel="stylesheet" type="text/css" href="./test.css">
<meta content="SVG Strip Map Generator - A tool for generating strip maps using SVG and JSON for embedding into websites" name="description">
<meta name="keywords" content="SVG, Strip, Map, Generator">
<meta name="viewport" content="initial-scale=1">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-58194930-1', 'auto');
ga('send', 'pageview');
</script>
<body onload="docs_load('.')">
<div id="top">
<div class="sm-navbar-container" id="navbar"></div>
<h1 style="background-color:#AAAAAA;color:white">SVG Strip Map Generator</h1>
<div>Welcome to the website for this project - a SVG and JSON-based Strip Map Generator. This project aims to provide a way to generate strip maps from JSON stored in a standard JavaScript file, with no need for a vector graphics editor such as Adobe Illustrator or Inkscape (though those tools are, of course, much more powerful). The main advantage of this tool is the ability to change a few parameters in the JSON and have live updates on a website.</div>
<div>Please note that Strip Maps generated by this tool are inevitably going to be extremely simple without knowledge of the Scalable Vector Graphics format. This tool is a work in progress.</div>
<br>
<div>The project repository can be found on <a href="https://github.com/Sparen/StripMapGen">GitHub</a>. You can find the source code for example projects here.</div>
<div>Example Strip Maps generated using this tool:<br>
<a href="./test-network/test-network.html">Test Network</a><br>
<a href="./test-helsinki/test-helsinki.html">Helsinki Metro</a> <br>
<a href="./test-internal/test-internal">Internal Tests</a> (advanced features)
</div>
<div>For documentation on the features, refer to the <a href="./user-guide/index.html">User Guides</a> and <a href="docs.html">Documentation</a>, located on the navbar.</div>
<br>
<div>This tool is currently not meant for a production environment and it is highly recommended that if using the Strip Map Generator as a JavaScript library, you obtain a formal release on GitHub. While the specification is still subject to change, attempts will be made to provide backwards compatibility. Note that despite this, the tool is being used to power the <a target="_blank" href="http://www.metrorouteatlas.net">Metro Route Atlas</a>, a project that functions as a natural usage and extension of this software.</div>
</div>
<div>Have a feature request or experiencing bugs? Please open an Issue on GitHub. Thank you!</div>
</div>
<script type="text/javascript" src="docs.js"></script>
</body>
</html>