- Tue Mar 06, 2012 1:25 pm
#81702
i found this jQuery plugin:
http://www.kalyani.com/2010/10/subway-m ... ry-plugin/
It can dynamically generate such a HTML5 map:

It would be great for a subway map. It features exact coords and shapes, connected stations... everything.
Atm i don't have much time. But maybe someone else with web design skills has free time. The basic markup is easy:
http://www.kalyani.com/2010/10/subway-m ... ry-plugin/
It can dynamically generate such a HTML5 map:

It would be great for a subway map. It features exact coords and shapes, connected stations... everything.
Atm i don't have much time. But maybe someone else with web design skills has free time. The basic markup is easy:
Code: Select all
<div data-columns="1000" data-rows="1000" data-cellSize="6" data-legendId="legend" data-textClass="text" data-gridNumbers="true" data-grid="true" data-lineWidth="8">
<ul data-color="#ff4db2" data-label="Line 1">
<li data-coords="200,200"><a href="link to infopage station 1">Station 1</a></li>
<li data-coords="200,500"><a href="link to infopage station 2">Station 2</a></li>
</ul>
</div>
<div id="legend"></div>
<script type="text/javascript">
$(".subway-map").subwayMap({ debug: true });
</script>