summaryrefslogtreecommitdiff
path: root/templates/chimere/blocks/map_menu.html
blob: 38fb4a8949fbbe2c3741c166e2fcac86db7b3b60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% load i18n %}
<div id='chimere_map_menu'>
    <ul>
        {% if routing %}
        <li id='map_menu_from' class='routing_item'>{% trans "From" context "routing" %}</li>
        <li id='map_menu_step' class='routing_item'>{% trans "Add a step" context "routing" %}</li>
        <li id='map_menu_to' class='routing_item'>{% trans "To" context "routing" %}</li>
        <li id='map_menu_clear' class='routing_item'>{% trans "Clear the itinerary" context "routing" %}</li>
        {% endif%}
        <li id='map_menu_zoomin'>{% trans "Zoom in" %}</li>
        <li id='map_menu_zoomout'>{% trans "Zoom out" %}</li>
        <li id='map_menu_center'>{% trans "Center the map here" %}</li>
    </ul>
</div>