summaryrefslogtreecommitdiff
path: root/index.html
blob: c37a352ad8b4bbfea38fc0e044304f8545e98ab5 (plain)
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
<!doctype html>
<html>
    <head>
        <title>TLV Metro</title>
        <script type="text/javascript" src="http://code.jquery.com/jquery-1.4.2.min.js"></script>
        <script type="text/javascript" src="jquery.subwayMap-0.5.0.js"></script>
        <link rel="stylesheet" type="text/css" href="main.css">
    </head>
    <body>
        <div class="subway-map" data-columns="24" data-rows="40" data-cellSize="40" data-legendId="legend" data-textClass="text" data-gridNumbers="true" data-grid="true" data-lineWidth="8">
            <ul data-color="#ff4db2" data-label="קו החוף">
                <li data-coords="9,2" data-dir="S" data-labelPos="N">אוניברסיטה</li>
                <li data-coords="8,3" data-labelPos="W">רמת אביב</li>
                <li data-coords="7,5"></li>
                <li data-coords="6,5" data-labelPos="W">כוכב הצפון</li>
                <li data-coords="4,6"></li>
                <li data-coords="4,7" data-labelPos="W">נמל</li>
                <li data-coords="4,9" data-labelPos="W" data-marker="interchange">מרינה</li>
                <li data-coords="4,11" data-labelPos="W">מגדל האופרה</li>
                <li data-coords="4,13" data-labelPos="W">צ'רלס קלור</li>
                <li data-coords="4,15" data-labelPos="W">העיר העתיקה</li>
            </ul>

            <ul data-color="#0000ff" data-label="קו החוף">
                <li data-coords="4,9" data-labelPos="W" data-marker="interchange">מרינה</li>
                <li data-coords="7.5,9" data-labelPos="S">כיכר המדינה</li>
                <li data-coords="9,9" data-labelPos="S" data-marker="interchange">סבידור מרכז</li>
                <li data-coords="13,9" data-labelPos="S">רמת גן</li>
            </ul>

        </div>

        <script type="text/javascript">
            $(".subway-map").subwayMap({ debug: true });
        </script>
    </body>
</html>