Error
14 | 15 |{{ message }}
16 | 17 |{{ bugreport|markdown }}
18 | 19 | {% trans %}Original message{% endtrans %}: {{ srcmsg }} 20 |├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── .gitmodules ├── AUTHORS ├── COPYING ├── Makefile ├── README.md ├── __init__.py ├── api ├── __init__.py ├── common.py ├── details.py ├── elevation.py ├── guidepost.py ├── listings.py ├── routes.py ├── tools.py └── vector_tiles.py ├── config ├── __init__.py ├── defaults.py ├── i18n.cfg └── sites │ ├── __init__.py │ ├── _common.py │ ├── cycling.py │ ├── hiking.py │ ├── mtb.py │ ├── riding.py │ ├── skating.py │ └── slopes.py ├── db ├── __init__.py ├── common │ ├── route_types.py │ └── symbols.py ├── configs.py ├── routes_maptype.py ├── slopes_maptype.py ├── styles │ ├── __init__.py │ ├── piste_network_style.py │ └── route_network_style.py └── tables │ ├── __init__.py │ ├── countries.py │ ├── piste.py │ ├── route_nodes.py │ ├── routes.py │ ├── styles.py │ └── updates.py ├── django └── locale │ ├── ar │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── ast │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── az │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── azb │ └── LC_MESSAGES │ │ └── django.po │ ├── ba │ └── LC_MESSAGES │ │ └── django.po │ ├── bcc │ └── LC_MESSAGES │ │ └── django.po │ ├── be-tarask │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── bg │ └── LC_MESSAGES │ │ └── django.po │ ├── blk │ └── LC_MESSAGES │ │ └── django.po │ ├── bn │ └── LC_MESSAGES │ │ └── django.po │ ├── br │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── bs │ └── LC_MESSAGES │ │ └── django.po │ ├── bxr │ └── LC_MESSAGES │ │ └── django.po │ ├── ca │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── cs │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── da │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── de │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── diq │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── el │ └── LC_MESSAGES │ │ └── django.po │ ├── en-gb │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── eo │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── es │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── et │ └── LC_MESSAGES │ │ └── django.po │ ├── eu │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── fa │ └── LC_MESSAGES │ │ └── django.po │ ├── fi │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── fo │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── fr │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── fy │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── gl │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── he │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── hu │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── hy │ └── LC_MESSAGES │ │ └── django.po │ ├── ia │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── id │ └── LC_MESSAGES │ │ └── django.po │ ├── is │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── it │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── ja │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── kab │ └── LC_MESSAGES │ │ └── django.po │ ├── ko │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── ksh │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── kum │ └── LC_MESSAGES │ │ └── django.po │ ├── lb │ └── LC_MESSAGES │ │ └── django.po │ ├── lki │ └── LC_MESSAGES │ │ └── django.po │ ├── lt │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── mg │ └── LC_MESSAGES │ │ └── django.po │ ├── mk │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── ml │ └── LC_MESSAGES │ │ └── django.po │ ├── mni │ └── LC_MESSAGES │ │ └── django.po │ ├── mnw │ └── LC_MESSAGES │ │ └── django.po │ ├── mr │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── ms │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── my │ └── LC_MESSAGES │ │ └── django.po │ ├── nb │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── ne │ └── LC_MESSAGES │ │ └── django.po │ ├── nl │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── nn │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── no │ ├── nqo │ └── LC_MESSAGES │ │ └── django.po │ ├── oc │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── olo │ └── LC_MESSAGES │ │ └── django.po │ ├── pfl │ └── LC_MESSAGES │ │ └── django.po │ ├── pl │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── pt-br │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── pt │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── qot │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── qqq │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── ro │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── ru │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── scn │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── sd │ └── LC_MESSAGES │ │ └── django.po │ ├── sk │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── skr-arab │ └── LC_MESSAGES │ │ └── django.po │ ├── sl │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── sr-ec │ └── LC_MESSAGES │ │ └── django.po │ ├── sr-el │ └── LC_MESSAGES │ │ └── django.po │ ├── sr_EC │ ├── sr_EL │ ├── sv │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── te │ └── LC_MESSAGES │ │ └── django.po │ ├── tl │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── tly │ └── LC_MESSAGES │ │ └── django.po │ ├── tr │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── tt-cyrl │ └── LC_MESSAGES │ │ └── django.po │ ├── uk │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── ur │ └── LC_MESSAGES │ │ └── django.po │ ├── vec │ └── LC_MESSAGES │ │ └── django.po │ ├── vi │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── xmf │ └── LC_MESSAGES │ │ └── django.po │ ├── zh-hans │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── zh-hant │ ├── LC_MESSAGES │ │ └── django.po │ └── helppages.yaml │ ├── zh-hk │ └── LC_MESSAGES │ │ └── django.po │ └── zh_CN ├── frontend.py ├── frontend ├── __init__.py ├── compatibility.py ├── help.py ├── static │ ├── contrib │ │ ├── flot-flot-958e5fd.js │ │ ├── images │ │ │ ├── ajax-loader.gif │ │ │ ├── icons-18-black-pack.png │ │ │ ├── icons-18-white-pack.png │ │ │ ├── icons-36-black-pack.png │ │ │ ├── icons-36-white-pack.png │ │ │ └── marker.png │ │ ├── jqm.page.params.js │ │ ├── jquery-1.12.0.min.js │ │ ├── jquery.mobile-1.4.5.min.css │ │ ├── jquery.mobile-1.4.5.min.js │ │ ├── modernizr.js │ │ ├── openlayers-4.1.1.css │ │ ├── openlayers-4.1.1.js │ │ ├── openlayers-6.3.1.css │ │ ├── openlayers-6.3.1.js │ │ ├── openlayers-6.4.3.css │ │ └── openlayers-6.4.3.js │ ├── css │ │ ├── cycling.css │ │ ├── hiking.css │ │ ├── layout.css │ │ ├── mtb.css │ │ ├── riding.css │ │ ├── skating.css │ │ └── slopes.css │ ├── img │ │ ├── ajax-loader.gif │ │ ├── banner_cycling.jpg │ │ ├── banner_hiking.jpg │ │ ├── banner_mtb.jpg │ │ ├── banner_riding.jpg │ │ ├── banner_skating.jpg │ │ ├── banner_slopes.jpg │ │ ├── dot.png │ │ ├── guidepost.svg │ │ ├── logo_background.svg │ │ ├── map_cycling.ico │ │ ├── map_cycling.png │ │ ├── map_cycling.svg │ │ ├── map_hiking.ico │ │ ├── map_hiking.png │ │ ├── map_hiking.svg │ │ ├── map_mtb.ico │ │ ├── map_mtb.png │ │ ├── map_mtb.svg │ │ ├── map_riding.ico │ │ ├── map_riding.png │ │ ├── map_riding.svg │ │ ├── map_skating.ico │ │ ├── map_skating.png │ │ ├── map_skating.svg │ │ ├── map_slopes.ico │ │ ├── map_slopes.png │ │ ├── map_slopes.svg │ │ ├── osmc │ │ │ ├── background │ │ │ │ ├── black.svg │ │ │ │ ├── black_circle.svg │ │ │ │ ├── black_frame.svg │ │ │ │ ├── black_round.svg │ │ │ │ ├── blue.svg │ │ │ │ ├── blue_circle.svg │ │ │ │ ├── blue_frame.svg │ │ │ │ ├── blue_round.svg │ │ │ │ ├── brown.svg │ │ │ │ ├── brown_circle.svg │ │ │ │ ├── brown_frame.svg │ │ │ │ ├── brown_round.svg │ │ │ │ ├── empty.svg │ │ │ │ ├── gray.svg │ │ │ │ ├── gray_circle.svg │ │ │ │ ├── gray_frame.svg │ │ │ │ ├── gray_round.svg │ │ │ │ ├── green.svg │ │ │ │ ├── green_circle.svg │ │ │ │ ├── green_frame.svg │ │ │ │ ├── green_round.svg │ │ │ │ ├── orange.svg │ │ │ │ ├── orange_circle.svg │ │ │ │ ├── orange_frame.svg │ │ │ │ ├── orange_round.svg │ │ │ │ ├── purple.svg │ │ │ │ ├── purple_circle.svg │ │ │ │ ├── purple_frame.svg │ │ │ │ ├── purple_round.svg │ │ │ │ ├── red.svg │ │ │ │ ├── red_circle.svg │ │ │ │ ├── red_frame.svg │ │ │ │ ├── red_round.svg │ │ │ │ ├── white.svg │ │ │ │ ├── white_circle.svg │ │ │ │ ├── white_frame.svg │ │ │ │ ├── white_round.svg │ │ │ │ ├── yellow.svg │ │ │ │ ├── yellow_circle.svg │ │ │ │ ├── yellow_frame.svg │ │ │ │ └── yellow_round.svg │ │ │ └── foreground │ │ │ │ ├── arch.svg │ │ │ │ ├── backslash.svg │ │ │ │ ├── bar.svg │ │ │ │ ├── black_arch.svg │ │ │ │ ├── black_backslash.svg │ │ │ │ ├── black_bar.svg │ │ │ │ ├── black_circle.svg │ │ │ │ ├── black_corner.svg │ │ │ │ ├── black_cross.svg │ │ │ │ ├── black_diamond.svg │ │ │ │ ├── black_diamond_line.svg │ │ │ │ ├── black_dot.svg │ │ │ │ ├── black_fork.svg │ │ │ │ ├── black_hexagon.svg │ │ │ │ ├── black_hiker.svg │ │ │ │ ├── black_lower.svg │ │ │ │ ├── black_pointer.svg │ │ │ │ ├── black_rectangle.svg │ │ │ │ ├── black_rectangle_line.svg │ │ │ │ ├── black_red_diamond.svg │ │ │ │ ├── black_right.svg │ │ │ │ ├── black_shell.svg │ │ │ │ ├── black_shell_modern.svg │ │ │ │ ├── black_slash.svg │ │ │ │ ├── black_stripe.svg │ │ │ │ ├── black_triangle.svg │ │ │ │ ├── black_triangle_line.svg │ │ │ │ ├── black_triangle_turned.svg │ │ │ │ ├── black_turned_T.svg │ │ │ │ ├── black_wheel.svg │ │ │ │ ├── black_x.svg │ │ │ │ ├── blue_arch.svg │ │ │ │ ├── blue_backslash.svg │ │ │ │ ├── blue_bar.svg │ │ │ │ ├── blue_circle.svg │ │ │ │ ├── blue_corner.svg │ │ │ │ ├── blue_cross.svg │ │ │ │ ├── blue_diamond.svg │ │ │ │ ├── blue_diamond_line.svg │ │ │ │ ├── blue_dot.svg │ │ │ │ ├── blue_fork.svg │ │ │ │ ├── blue_hexagon.svg │ │ │ │ ├── blue_hiker.svg │ │ │ │ ├── blue_lower.svg │ │ │ │ ├── blue_pointer.svg │ │ │ │ ├── blue_rectangle.svg │ │ │ │ ├── blue_rectangle_line.svg │ │ │ │ ├── blue_red_diamond.svg │ │ │ │ ├── blue_right.svg │ │ │ │ ├── blue_shell.svg │ │ │ │ ├── blue_shell_modern.svg │ │ │ │ ├── blue_slash.svg │ │ │ │ ├── blue_stripe.svg │ │ │ │ ├── blue_triangle.svg │ │ │ │ ├── blue_triangle_line.svg │ │ │ │ ├── blue_triangle_turned.svg │ │ │ │ ├── blue_turned_T.svg │ │ │ │ ├── blue_wheel.svg │ │ │ │ ├── blue_x.svg │ │ │ │ ├── brown_arch.svg │ │ │ │ ├── brown_backslash.svg │ │ │ │ ├── brown_bar.svg │ │ │ │ ├── brown_circle.svg │ │ │ │ ├── brown_corner.svg │ │ │ │ ├── brown_cross.svg │ │ │ │ ├── brown_diamond.svg │ │ │ │ ├── brown_diamond_line.svg │ │ │ │ ├── brown_dot.svg │ │ │ │ ├── brown_fork.svg │ │ │ │ ├── brown_hexagon.svg │ │ │ │ ├── brown_hiker.svg │ │ │ │ ├── brown_lower.svg │ │ │ │ ├── brown_pointer.svg │ │ │ │ ├── brown_rectangle.svg │ │ │ │ ├── brown_rectangle_line.svg │ │ │ │ ├── brown_red_diamond.svg │ │ │ │ ├── brown_right.svg │ │ │ │ ├── brown_shell.svg │ │ │ │ ├── brown_shell_modern.svg │ │ │ │ ├── brown_slash.svg │ │ │ │ ├── brown_stripe.svg │ │ │ │ ├── brown_triangle.svg │ │ │ │ ├── brown_triangle_line.svg │ │ │ │ ├── brown_triangle_turned.svg │ │ │ │ ├── brown_turned_T.svg │ │ │ │ ├── brown_wheel.svg │ │ │ │ ├── brown_x.svg │ │ │ │ ├── circle.svg │ │ │ │ ├── corner.svg │ │ │ │ ├── cross.svg │ │ │ │ ├── diamond.svg │ │ │ │ ├── diamond_line.svg │ │ │ │ ├── dot.svg │ │ │ │ ├── empty.svg │ │ │ │ ├── fork.svg │ │ │ │ ├── gray_arch.svg │ │ │ │ ├── gray_backslash.svg │ │ │ │ ├── gray_bar.svg │ │ │ │ ├── gray_circle.svg │ │ │ │ ├── gray_corner.svg │ │ │ │ ├── gray_cross.svg │ │ │ │ ├── gray_diamond.svg │ │ │ │ ├── gray_diamond_line.svg │ │ │ │ ├── gray_dot.svg │ │ │ │ ├── gray_fork.svg │ │ │ │ ├── gray_hexagon.svg │ │ │ │ ├── gray_hiker.svg │ │ │ │ ├── gray_lower.svg │ │ │ │ ├── gray_pointer.svg │ │ │ │ ├── gray_rectangle.svg │ │ │ │ ├── gray_rectangle_line.svg │ │ │ │ ├── gray_red_diamond.svg │ │ │ │ ├── gray_right.svg │ │ │ │ ├── gray_shell.svg │ │ │ │ ├── gray_shell_modern.svg │ │ │ │ ├── gray_slash.svg │ │ │ │ ├── gray_stripe.svg │ │ │ │ ├── gray_triangle.svg │ │ │ │ ├── gray_triangle_line.svg │ │ │ │ ├── gray_triangle_turned.svg │ │ │ │ ├── gray_turned_T.svg │ │ │ │ ├── gray_wheel.svg │ │ │ │ ├── gray_x.svg │ │ │ │ ├── green_arch.svg │ │ │ │ ├── green_backslash.svg │ │ │ │ ├── green_bar.svg │ │ │ │ ├── green_circle.svg │ │ │ │ ├── green_corner.svg │ │ │ │ ├── green_cross.svg │ │ │ │ ├── green_diamond.svg │ │ │ │ ├── green_diamond_line.svg │ │ │ │ ├── green_dot.svg │ │ │ │ ├── green_fork.svg │ │ │ │ ├── green_hexagon.svg │ │ │ │ ├── green_hiker.svg │ │ │ │ ├── green_lower.svg │ │ │ │ ├── green_pointer.svg │ │ │ │ ├── green_rectangle.svg │ │ │ │ ├── green_rectangle_line.svg │ │ │ │ ├── green_red_diamond.svg │ │ │ │ ├── green_right.svg │ │ │ │ ├── green_shell.svg │ │ │ │ ├── green_shell_modern.svg │ │ │ │ ├── green_slash.svg │ │ │ │ ├── green_stripe.svg │ │ │ │ ├── green_triangle.svg │ │ │ │ ├── green_triangle_line.svg │ │ │ │ ├── green_triangle_turned.svg │ │ │ │ ├── green_turned_T.svg │ │ │ │ ├── green_wheel.svg │ │ │ │ ├── green_x.svg │ │ │ │ ├── hexagon.svg │ │ │ │ ├── hiker.svg │ │ │ │ ├── lower.svg │ │ │ │ ├── orange_arch.svg │ │ │ │ ├── orange_backslash.svg │ │ │ │ ├── orange_bar.svg │ │ │ │ ├── orange_circle.svg │ │ │ │ ├── orange_corner.svg │ │ │ │ ├── orange_cross.svg │ │ │ │ ├── orange_diamond.svg │ │ │ │ ├── orange_diamond_line.svg │ │ │ │ ├── orange_dot.svg │ │ │ │ ├── orange_fork.svg │ │ │ │ ├── orange_hexagon.svg │ │ │ │ ├── orange_hiker.svg │ │ │ │ ├── orange_lower.svg │ │ │ │ ├── orange_pointer.svg │ │ │ │ ├── orange_rectangle.svg │ │ │ │ ├── orange_rectangle_line.svg │ │ │ │ ├── orange_red_diamond.svg │ │ │ │ ├── orange_right.svg │ │ │ │ ├── orange_shell.svg │ │ │ │ ├── orange_shell_modern.svg │ │ │ │ ├── orange_slash.svg │ │ │ │ ├── orange_stripe.svg │ │ │ │ ├── orange_triangle.svg │ │ │ │ ├── orange_triangle_line.svg │ │ │ │ ├── orange_triangle_turned.svg │ │ │ │ ├── orange_turned_T.svg │ │ │ │ ├── orange_wheel.svg │ │ │ │ ├── orange_x.svg │ │ │ │ ├── pointer.svg │ │ │ │ ├── purple_arch.svg │ │ │ │ ├── purple_backslash.svg │ │ │ │ ├── purple_bar.svg │ │ │ │ ├── purple_circle.svg │ │ │ │ ├── purple_corner.svg │ │ │ │ ├── purple_cross.svg │ │ │ │ ├── purple_diamond.svg │ │ │ │ ├── purple_diamond_line.svg │ │ │ │ ├── purple_dot.svg │ │ │ │ ├── purple_fork.svg │ │ │ │ ├── purple_hexagon.svg │ │ │ │ ├── purple_hiker.svg │ │ │ │ ├── purple_lower.svg │ │ │ │ ├── purple_pointer.svg │ │ │ │ ├── purple_rectangle.svg │ │ │ │ ├── purple_rectangle_line.svg │ │ │ │ ├── purple_red_diamond.svg │ │ │ │ ├── purple_right.svg │ │ │ │ ├── purple_shell.svg │ │ │ │ ├── purple_shell_modern.svg │ │ │ │ ├── purple_slash.svg │ │ │ │ ├── purple_stripe.svg │ │ │ │ ├── purple_triangle.svg │ │ │ │ ├── purple_triangle_line.svg │ │ │ │ ├── purple_triangle_turned.svg │ │ │ │ ├── purple_turned_T.svg │ │ │ │ ├── purple_wheel.svg │ │ │ │ ├── purple_x.svg │ │ │ │ ├── rectangle.svg │ │ │ │ ├── rectangle_line.svg │ │ │ │ ├── red_arch.svg │ │ │ │ ├── red_backslash.svg │ │ │ │ ├── red_bar.svg │ │ │ │ ├── red_circle.svg │ │ │ │ ├── red_corner.svg │ │ │ │ ├── red_cross.svg │ │ │ │ ├── red_diamond.svg │ │ │ │ ├── red_diamond_line.svg │ │ │ │ ├── red_dot.svg │ │ │ │ ├── red_fork.svg │ │ │ │ ├── red_hexagon.svg │ │ │ │ ├── red_hiker.svg │ │ │ │ ├── red_lower.svg │ │ │ │ ├── red_pointer.svg │ │ │ │ ├── red_rectangle.svg │ │ │ │ ├── red_rectangle_line.svg │ │ │ │ ├── red_red_diamond.svg │ │ │ │ ├── red_right.svg │ │ │ │ ├── red_shell.svg │ │ │ │ ├── red_shell_modern.svg │ │ │ │ ├── red_slash.svg │ │ │ │ ├── red_stripe.svg │ │ │ │ ├── red_triangle.svg │ │ │ │ ├── red_triangle_line.svg │ │ │ │ ├── red_triangle_turned.svg │ │ │ │ ├── red_turned_T.svg │ │ │ │ ├── red_wheel.svg │ │ │ │ ├── red_x.svg │ │ │ │ ├── right.svg │ │ │ │ ├── shell.svg │ │ │ │ ├── shell_modern.svg │ │ │ │ ├── slash.svg │ │ │ │ ├── stripe.svg │ │ │ │ ├── triangle.svg │ │ │ │ ├── triangle_line.svg │ │ │ │ ├── triangle_turned.svg │ │ │ │ ├── turned_T.svg │ │ │ │ ├── wheel.svg │ │ │ │ ├── white_arch.svg │ │ │ │ ├── white_backslash.svg │ │ │ │ ├── white_bar.svg │ │ │ │ ├── white_circle.svg │ │ │ │ ├── white_corner.svg │ │ │ │ ├── white_cross.svg │ │ │ │ ├── white_diamond.svg │ │ │ │ ├── white_diamond_line.svg │ │ │ │ ├── white_dot.svg │ │ │ │ ├── white_fork.svg │ │ │ │ ├── white_hexagon.svg │ │ │ │ ├── white_hiker.svg │ │ │ │ ├── white_lower.svg │ │ │ │ ├── white_pointer.svg │ │ │ │ ├── white_rectangle.svg │ │ │ │ ├── white_rectangle_line.svg │ │ │ │ ├── white_red_diamond.svg │ │ │ │ ├── white_right.svg │ │ │ │ ├── white_shell.svg │ │ │ │ ├── white_shell_modern.svg │ │ │ │ ├── white_slash.svg │ │ │ │ ├── white_stripe.svg │ │ │ │ ├── white_triangle.svg │ │ │ │ ├── white_triangle_line.svg │ │ │ │ ├── white_triangle_turned.svg │ │ │ │ ├── white_turned_T.svg │ │ │ │ ├── white_wheel.svg │ │ │ │ ├── white_x.svg │ │ │ │ ├── x.svg │ │ │ │ ├── yellow_arch.svg │ │ │ │ ├── yellow_backslash.svg │ │ │ │ ├── yellow_bar.svg │ │ │ │ ├── yellow_circle.svg │ │ │ │ ├── yellow_corner.svg │ │ │ │ ├── yellow_cross.svg │ │ │ │ ├── yellow_diamond.svg │ │ │ │ ├── yellow_diamond_line.svg │ │ │ │ ├── yellow_dot.svg │ │ │ │ ├── yellow_fork.svg │ │ │ │ ├── yellow_hexagon.svg │ │ │ │ ├── yellow_hiker.svg │ │ │ │ ├── yellow_lower.svg │ │ │ │ ├── yellow_pointer.svg │ │ │ │ ├── yellow_rectangle.svg │ │ │ │ ├── yellow_rectangle_line.svg │ │ │ │ ├── yellow_red_diamond.svg │ │ │ │ ├── yellow_right.svg │ │ │ │ ├── yellow_shell.svg │ │ │ │ ├── yellow_shell_modern.svg │ │ │ │ ├── yellow_slash.svg │ │ │ │ ├── yellow_stripe.svg │ │ │ │ ├── yellow_triangle.svg │ │ │ │ ├── yellow_triangle_line.svg │ │ │ │ ├── yellow_triangle_turned.svg │ │ │ │ ├── yellow_turned_T.svg │ │ │ │ ├── yellow_wheel.svg │ │ │ │ └── yellow_x.svg │ │ ├── route_alp.png │ │ ├── route_hike.png │ │ ├── route_int.png │ │ ├── route_mnt.png │ │ ├── route_mnt1.png │ │ ├── route_mnt2.png │ │ ├── route_nat.png │ │ ├── route_nordic.png │ │ ├── route_other.png │ │ ├── route_reg.png │ │ ├── route_ski.png │ │ ├── route_sled.png │ │ ├── route_std.png │ │ ├── route_unknown.png │ │ ├── waymarked_trails_logo.svg │ │ ├── white_blue_bar.svg │ │ ├── white_red_bar.svg │ │ └── yellow_diamond.svg │ ├── js │ │ ├── app.js │ │ ├── elevation.js │ │ ├── guidepost.js │ │ ├── help.js │ │ └── map.js │ ├── packed │ │ └── .gitignore │ ├── symbols │ │ ├── cycling │ │ │ └── None.svg │ │ ├── hiking │ │ │ └── None.svg │ │ ├── mtb │ │ │ └── None.svg │ │ ├── riding │ │ │ └── None.svg │ │ ├── skating │ │ │ └── None.svg │ │ └── slopes │ │ │ └── None.svg │ └── taginfo.json └── templates │ ├── base.html │ ├── error.html │ ├── help-base.html │ ├── help.html │ ├── index.html │ ├── osmc_symbol.html │ └── pages │ ├── guidepost.html │ ├── page-base.html │ ├── routelist.html │ ├── routes.html │ ├── search.html │ └── settings.html ├── makedb.py └── maps ├── __init__.py ├── cycling.py ├── hiking.py ├── mtb.py ├── riding.py ├── skating.py ├── slopes.py ├── styles ├── cyclingmap.xml ├── hikingmap.xml ├── inc │ ├── datasource.inc │ ├── guidepost_layer.inc │ ├── networknode_layer.inc │ ├── route_styles.inc │ ├── route_swiss_styles.inc │ ├── shield_all_layer.inc │ ├── shield_inr_layer.inc │ ├── shield_lowzoom_layer.inc │ └── shield_styles.inc ├── mtbmap.xml ├── ridingmap.xml ├── skatingmap.xml └── slopesmap.xml └── symbols ├── jel ├── +.svg ├── 3.svg ├── 4.svg ├── atl.svg ├── atlv.svg ├── b.svg ├── bfk.svg ├── bor.svg ├── but.svg ├── c.svg ├── eml.svg ├── f+.svg ├── f.svg ├── f3.svg ├── f4.svg ├── fatl.svg ├── fatlv.svg ├── fb.svg ├── fbor.svg ├── fc.svg ├── feml.svg ├── ffut.svg ├── fii.svg ├── fivv.svg ├── fkor.svg ├── fl.svg ├── flo.svg ├── fm.svg ├── fmtb.svg ├── fnw.svg ├── fpec.svg ├── fq.svg ├── ft.svg ├── ftfl.svg ├── ftmp.svg ├── fut.svg ├── fx.svg ├── ii.svg ├── ivv.svg ├── k+.svg ├── k.svg ├── k3.svg ├── k4.svg ├── karsztb.svg ├── katl.svg ├── katlv.svg ├── kb.svg ├── kbor.svg ├── kc.svg ├── keml.svg ├── kfut.svg ├── kii.svg ├── kivv.svg ├── kkor.svg ├── kl.svg ├── klo.svg ├── km.svg ├── kmtb.svg ├── knw.svg ├── kor.svg ├── kpec.svg ├── kq.svg ├── kt.svg ├── ktfl.svg ├── ktmp.svg ├── kx.svg ├── l+.svg ├── l.svg ├── l3.svg ├── l4.svg ├── latl.svg ├── latlv.svg ├── lb.svg ├── lbor.svg ├── lc.svg ├── leml.svg ├── lfut.svg ├── lii.svg ├── livv.svg ├── lkor.svg ├── ll.svg ├── llo.svg ├── lm.svg ├── lmtb.svg ├── lnw.svg ├── lo.svg ├── lpec.svg ├── lq.svg ├── ls.svg ├── lt.svg ├── ltfl.svg ├── ltmp.svg ├── lx.svg ├── m.svg ├── mberc.svg ├── mtb.svg ├── nw.svg ├── p+.svg ├── p.svg ├── p3.svg ├── p4.svg ├── palma.svg ├── palp.svg ├── patl.svg ├── patlv.svg ├── pb.svg ├── pbor.svg ├── pc.svg ├── pec.svg ├── peml.svg ├── pfut.svg ├── pii.svg ├── pivv.svg ├── pkor.svg ├── pl.svg ├── plo.svg ├── pm.svg ├── pmet.svg ├── pmtb.svg ├── pnw.svg ├── ppec.svg ├── pq.svg ├── pt.svg ├── ptfl.svg ├── ptmp.svg ├── px.svg ├── q.svg ├── rc.svg ├── s+.svg ├── s.svg ├── s3.svg ├── s4.svg ├── salp.svg ├── satl.svg ├── satlv.svg ├── sb.svg ├── sbarack.svg ├── sbor.svg ├── sc.svg ├── seml.svg ├── sfut.svg ├── sgy.svg ├── sii.svg ├── sivv.svg ├── skor.svg ├── sl.svg ├── slo.svg ├── sm.svg ├── smtb.svg ├── smz.svg ├── snw.svg ├── spec.svg ├── sq.svg ├── st.svg ├── ste.svg ├── stfl.svg ├── stj.svg ├── stm.svg ├── stmp.svg ├── sx.svg ├── sz.svg ├── t.svg ├── tfl.svg ├── tmp.svg ├── tny.svg ├── x.svg ├── z+.svg ├── z.svg ├── z3.svg ├── z4.svg ├── zatl.svg ├── zatlv.svg ├── zb.svg ├── zbic.svg ├── zbor.svg ├── zc.svg ├── zeml.svg ├── zfut.svg ├── zii.svg ├── zivv.svg ├── zkor.svg ├── zl.svg ├── zlo.svg ├── zm.svg ├── zmtb.svg ├── znw.svg ├── zpec.svg ├── zq.svg ├── zszolo.svg ├── zt.svg ├── ztfl.svg ├── ztmp.svg ├── zut.svg └── zx.svg ├── kct ├── horse.svg ├── interesting_object.svg ├── learning.svg ├── local.svg ├── major.svg ├── peak.svg ├── ruin.svg └── spring.svg ├── misc ├── README ├── empty.png ├── empty.svg ├── guidepost.svg ├── guidepost_gray.svg ├── hiker.svg ├── hikingnode.svg ├── red_wheel.svg └── whitearrow.svg ├── osmc ├── hiker.svg └── wheel.svg └── shields ├── eupen.svg ├── igel_much19.svg ├── judenpfad_vb.svg └── vr_vb.svg /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: lonvia 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | config/local.py 2 | frontend/static/symbols/hiking/* 3 | frontend/static/symbols/cycling/* 4 | frontend/static/symbols/mtb/* 5 | frontend/static/symbols/riding/* 6 | frontend/static/symbols/skating/* 7 | frontend/static/symbols/slopes/* 8 | frontend/static/packed/* 9 | frontend/static/.webassets-cache 10 | *.log 11 | *.mo 12 | *.pyc 13 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "wiki"] 2 | path = wiki 3 | url = git@github.com:lonvia/waymarked-trails-site.wiki.git 4 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Code was contributed by the following people: 2 | 3 | Sarah Hoffmann 4 | Guttorm Flatabø 5 | Joachim Schleicher 6 | Espen Oldeman Lund 7 | Michael Spreng 8 | 9 | 10 | Translations are provided via tranlatewiki.net. 11 | For a full list of contributors visit 12 | 13 | http://translatewiki.net/wiki/Translating:Waymarked_Trails 14 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | @echo "Available targets:" 3 | @echo " trans-extract: extract new translations" 4 | @echo " trans-compile: compile all translations" 5 | 6 | trans-extract: 7 | pybabel-python3 extract -o django/locale/qot/LC_MESSAGES/django.po --project='Waymarked Trails Map' --copyright-holder='Sarah Hoffmann' --sort-output --no-wrap --msgid-bugs-address=lonvia@denofr.de -F config/i18n.cfg . 8 | 9 | POFILES=$(shell echo django/locale/*/LC_MESSAGES/django.po) 10 | MOFILES=$(subst .po,.mo, $(POFILES)) 11 | 12 | %.mo : %.po 13 | msgfmt -o $@ $< 14 | 15 | trans-compile: $(MOFILES) 16 | -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/__init__.py -------------------------------------------------------------------------------- /api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/api/__init__.py -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/config/__init__.py -------------------------------------------------------------------------------- /config/i18n.cfg: -------------------------------------------------------------------------------- 1 | [python: **.py] 2 | 3 | [jinja2: frontend/templates/**.html] 4 | encoding = utf-8 5 | silent=False 6 | extensions=webassets.ext.jinja2.AssetsExtension 7 | -------------------------------------------------------------------------------- /config/sites/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/config/sites/__init__.py -------------------------------------------------------------------------------- /db/styles/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/db/styles/__init__.py -------------------------------------------------------------------------------- /db/tables/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/db/tables/__init__.py -------------------------------------------------------------------------------- /django/locale/az/helppages.yaml: -------------------------------------------------------------------------------- 1 | # Messages for Azerbaijani (azərbaycanca) 2 | # Exported from translatewiki.net 3 | # Export driver: phpyaml 4 | # Author: AZISS 5 | --- 6 | about: 7 | title: Xəritə haqqında 8 | hiking: Bu xəritədə dünyada üzrə turizm marşrutları göstərilmişdir. 9 | cycling: Bu xəritədə dünyada üzrə velosiped marşrutları göstərilmişdir. 10 | mtb: Bu xəritədə dünyada üzrə dağ velosipedi marşrutları göstərilmişdir. 11 | skating: Bu xəritədə dünyada üzrə skeyt marşrutları göstərilmişdir. 12 | rendering: 13 | title: OSM məlumatlarının renderi 14 | technical: 15 | title: Texniki detallar 16 | acknowledgements: 17 | title: Minnətdarlıqlar 18 | contact: 19 | title: Əlaqə 20 | ... 21 | -------------------------------------------------------------------------------- /django/locale/fo/helppages.yaml: -------------------------------------------------------------------------------- 1 | # Messages for Faroese (føroyskt) 2 | # Exported from translatewiki.net 3 | # Export driver: phpyaml 4 | # Author: EileenSanda 5 | --- 6 | about: 7 | title: Um kortið 8 | hiking: Hetta kortið vísir uppmerktar gongugøtur kring allan heimin. 9 | cycling: Hetta kortið vísir uppmerktar súkklurutur kring allan heimin. 10 | rendering: 11 | title: Vísing av OSM dáta 12 | hierarchies: 13 | title: Relasjónshierarki 14 | osmc: 15 | title: osmc:symbol tag 16 | technical: 17 | title: Tøkniligir smálutir 18 | ... 19 | -------------------------------------------------------------------------------- /django/locale/he/helppages.yaml: -------------------------------------------------------------------------------- 1 | # Messages for Hebrew (עברית) 2 | # Exported from translatewiki.net 3 | # Export driver: phpyaml 4 | # Author: Inkbug 5 | --- 6 | about: 7 | title: אודות המפה 8 | technical: 9 | title: פרטים טכניים 10 | acknowledgements: 11 | title: תודות 12 | contact: 13 | title: יצירת קשר 14 | ... 15 | -------------------------------------------------------------------------------- /django/locale/ja/helppages.yaml: -------------------------------------------------------------------------------- 1 | # Messages for Japanese (日本語) 2 | # Exported from translatewiki.net 3 | # Export driver: phpyaml 4 | # Author: Shirayuki 5 | --- 6 | about: 7 | title: 地図について 8 | rendering: 9 | title: OSM データのレンダリング 10 | osmc: 11 | title: osmc:symbol タグ 12 | hikinglocal: 13 | title: ローカライズされたレンダリング 14 | elevationprofiles: 15 | title: 高度のプロファイル 16 | technical: 17 | title: 技術的な詳細 18 | translation: |- 19 | ## 翻訳 20 | 21 | [translatewiki.net](http://translatewiki.net) の協力的な人々が翻訳作業をしています。あなたの言語への翻訳に貢献したい場合、または既存の翻訳にフィードバックしたい場合は、[translatewiki.net 上のプロジェクト ページ](http://translatewiki.net/wiki/Translating:Waymarked_Trails) をご覧ください。 22 | legal: 23 | title: 法的事項および利用規約 24 | acknowledgements: 25 | title: 謝辞 26 | contact: 27 | title: 連絡先 28 | ... 29 | -------------------------------------------------------------------------------- /django/locale/lt/helppages.yaml: -------------------------------------------------------------------------------- 1 | # Messages for Lithuanian (lietuvių) 2 | # Exported from translatewiki.net 3 | # Export driver: phpyaml 4 | # Author: Mantak111 5 | --- 6 | about: 7 | title: Apie žemėlapį 8 | hiking: Šis žemėlapis rodo ženklą paskelbtas pėsčiųjų visame pasaulyje. 9 | cycling: Šis žemėlapis rodo ženklą paskelbtus dviračių maršrutus visame pasaulyje. 10 | mtb: Šis žemėlapis rodo ženklą paskelbtus kalnų dviračių maršrutus visame pasaulyje. 11 | rendering: 12 | title: Atvaizduojami OSM duomenys 13 | hikinglocal: 14 | title: Lokalizuota atvaizduojama 15 | technical: 16 | title: Techniniai duomenys 17 | legal: 18 | title: Teisinis ir naudojimo sąlygos 19 | acknowledgements: 20 | title: Padėkos 21 | contact: 22 | title: Kontaktai 23 | ... 24 | -------------------------------------------------------------------------------- /django/locale/no: -------------------------------------------------------------------------------- 1 | nb -------------------------------------------------------------------------------- /django/locale/sr_EC: -------------------------------------------------------------------------------- 1 | sr-ec -------------------------------------------------------------------------------- /django/locale/sr_EL: -------------------------------------------------------------------------------- 1 | sr-el -------------------------------------------------------------------------------- /django/locale/zh_CN: -------------------------------------------------------------------------------- 1 | zh-hans/ -------------------------------------------------------------------------------- /frontend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/__init__.py -------------------------------------------------------------------------------- /frontend/static/contrib/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/contrib/images/ajax-loader.gif -------------------------------------------------------------------------------- /frontend/static/contrib/images/icons-18-black-pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/contrib/images/icons-18-black-pack.png -------------------------------------------------------------------------------- /frontend/static/contrib/images/icons-18-white-pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/contrib/images/icons-18-white-pack.png -------------------------------------------------------------------------------- /frontend/static/contrib/images/icons-36-black-pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/contrib/images/icons-36-black-pack.png -------------------------------------------------------------------------------- /frontend/static/contrib/images/icons-36-white-pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/contrib/images/icons-36-white-pack.png -------------------------------------------------------------------------------- /frontend/static/contrib/images/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/contrib/images/marker.png -------------------------------------------------------------------------------- /frontend/static/css/cycling.css: -------------------------------------------------------------------------------- 1 | .ui-page-theme-b .ui-bar-inherit, 2 | .ui-bar-b, 3 | .background-cycling { 4 | background-color: #778bf2; 5 | color: #101010; 6 | } 7 | 8 | .ui-bar-a { 9 | background-color: #414c87; 10 | color: #b6d293; 11 | } 12 | 13 | .ui-subheader a:link, .ui-subheader a:visited, .ui-subheader a:hover { 14 | color: #dde530 !important 15 | } 16 | -------------------------------------------------------------------------------- /frontend/static/css/hiking.css: -------------------------------------------------------------------------------- 1 | .ui-page-theme-b .ui-bar-inherit, 2 | .ui-bar-b, 3 | .background-hiking { 4 | background-color: #81AA4B; 5 | color: #000; 6 | } 7 | 8 | .ui-subheader a:link, .ui-subheader a:visited, .ui-subheader a:hover { 9 | color: #fcd76d !important 10 | } 11 | 12 | .ui-bar-a { 13 | background-color: #526d30; 14 | color: #dbfbb1; 15 | } 16 | 17 | -------------------------------------------------------------------------------- /frontend/static/css/mtb.css: -------------------------------------------------------------------------------- 1 | .ui-page-theme-b .ui-bar-inherit, 2 | .ui-bar-b, 3 | .background-mtb { 4 | background-color: #353d6b; 5 | color: #d4d6e1; 6 | } 7 | 8 | .ui-bar-a { 9 | background-color: #161a2d; 10 | color: #c9cdd2; 11 | } 12 | 13 | .ui-subheader a:link, .ui-subheader a:visited, .ui-subheader a:hover { 14 | color: #f1f85e !important 15 | } 16 | -------------------------------------------------------------------------------- /frontend/static/css/riding.css: -------------------------------------------------------------------------------- 1 | .ui-page-theme-b .ui-bar-inherit, 2 | .ui-bar-b, 3 | .background-riding { 4 | background-color: #d9c885; 5 | color: #101010; 6 | } 7 | 8 | .ui-bar-a { 9 | background-color: #908558; 10 | color: #d9c885; 11 | } 12 | 13 | .ui-subheader a:link, .ui-subheader a:visited, .ui-subheader a:hover { 14 | color: #ece7d5 !important 15 | } 16 | -------------------------------------------------------------------------------- /frontend/static/css/skating.css: -------------------------------------------------------------------------------- 1 | .ui-page-theme-b .ui-bar-inherit, 2 | .ui-bar-b, 3 | .background-skating { 4 | background-color: #c25366; 5 | color: #000; 6 | } 7 | 8 | .ui-bar-a { 9 | background-color: #5f2932; 10 | color: #b9b6c3; 11 | } 12 | 13 | .ui-subheader a:link, .ui-subheader a:visited, .ui-subheader a:hover { 14 | color: #8AA145 !important 15 | } 16 | -------------------------------------------------------------------------------- /frontend/static/css/slopes.css: -------------------------------------------------------------------------------- 1 | .ui-page-theme-b .ui-bar-inherit, 2 | .ui-bar-b, 3 | .background-slopes { 4 | background-color: #a2a2a2; 5 | color: #000; 6 | } 7 | 8 | .ui-subheader a:link, .ui-subheader a:visited, .ui-subheader a:hover { 9 | color: #c67a0e !important 10 | } 11 | 12 | .ui-bar-a { 13 | background-color: #424242; 14 | color: #b5b5b5; 15 | } 16 | 17 | -------------------------------------------------------------------------------- /frontend/static/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/img/ajax-loader.gif -------------------------------------------------------------------------------- /frontend/static/img/banner_cycling.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/img/banner_cycling.jpg -------------------------------------------------------------------------------- /frontend/static/img/banner_hiking.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/img/banner_hiking.jpg -------------------------------------------------------------------------------- /frontend/static/img/banner_mtb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/img/banner_mtb.jpg -------------------------------------------------------------------------------- /frontend/static/img/banner_riding.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/img/banner_riding.jpg -------------------------------------------------------------------------------- /frontend/static/img/banner_skating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/img/banner_skating.jpg -------------------------------------------------------------------------------- /frontend/static/img/banner_slopes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/img/banner_slopes.jpg -------------------------------------------------------------------------------- /frontend/static/img/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/img/dot.png -------------------------------------------------------------------------------- /frontend/static/img/map_cycling.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/img/map_cycling.ico -------------------------------------------------------------------------------- /frontend/static/img/map_cycling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/img/map_cycling.png -------------------------------------------------------------------------------- /frontend/static/img/map_hiking.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/img/map_hiking.ico -------------------------------------------------------------------------------- /frontend/static/img/map_hiking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/img/map_hiking.png -------------------------------------------------------------------------------- /frontend/static/img/map_mtb.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/img/map_mtb.ico -------------------------------------------------------------------------------- /frontend/static/img/map_mtb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/img/map_mtb.png -------------------------------------------------------------------------------- /frontend/static/img/map_riding.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/img/map_riding.ico -------------------------------------------------------------------------------- /frontend/static/img/map_riding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/img/map_riding.png -------------------------------------------------------------------------------- /frontend/static/img/map_skating.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/img/map_skating.ico -------------------------------------------------------------------------------- /frontend/static/img/map_skating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/img/map_skating.png -------------------------------------------------------------------------------- /frontend/static/img/map_slopes.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/img/map_slopes.ico -------------------------------------------------------------------------------- /frontend/static/img/map_slopes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/img/map_slopes.png -------------------------------------------------------------------------------- /frontend/static/img/osmc/background/black.svg: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/background/black_frame.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/background/black_round.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/background/blue.svg: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/background/blue_round.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/background/brown.svg: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/background/brown_round.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/background/gray.svg: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/background/gray_round.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/background/green.svg: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/background/green_round.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/background/orange.svg: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/background/orange_round.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/background/purple.svg: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/background/purple_round.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/background/red.svg: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/background/red_round.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/background/white.svg: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/background/white_round.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/background/yellow.svg: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/background/yellow_round.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/backslash.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/bar.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/black_backslash.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/black_bar.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/black_corner.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/black_diamond.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/black_diamond_line.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/black_dot.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/black_hexagon.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/black_lower.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/black_pointer.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/black_rectangle.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/black_right.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/black_slash.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/black_stripe.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/black_triangle.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/black_triangle_line.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/black_triangle_turned.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/black_turned_T.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/black_x.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/blue_backslash.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/blue_bar.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/blue_corner.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/blue_diamond.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/blue_diamond_line.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/blue_dot.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/blue_hexagon.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/blue_lower.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/blue_pointer.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/blue_rectangle.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/blue_right.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/blue_slash.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/blue_stripe.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/blue_triangle.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/blue_triangle_line.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/blue_triangle_turned.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/blue_turned_T.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/blue_x.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/brown_backslash.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/brown_bar.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/brown_corner.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/brown_diamond.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/brown_diamond_line.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/brown_dot.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/brown_hexagon.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/brown_lower.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/brown_pointer.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/brown_rectangle.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/brown_right.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/brown_slash.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/brown_stripe.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/brown_triangle.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/brown_triangle_line.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/brown_triangle_turned.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/brown_turned_T.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/brown_x.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/corner.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/diamond.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/diamond_line.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/dot.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/gray_backslash.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/gray_bar.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/gray_corner.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/gray_diamond.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/gray_diamond_line.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/gray_dot.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/gray_hexagon.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/gray_lower.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/gray_pointer.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/gray_rectangle.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/gray_right.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/gray_slash.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/gray_stripe.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/gray_triangle.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/gray_triangle_line.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/gray_triangle_turned.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/gray_turned_T.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/gray_x.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/green_backslash.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/green_bar.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/green_corner.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/green_diamond.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/green_diamond_line.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/green_dot.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/green_hexagon.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/green_lower.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/green_pointer.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/green_rectangle.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/green_right.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/green_slash.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/green_stripe.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/green_triangle.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/green_triangle_line.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/green_triangle_turned.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/green_turned_T.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/green_x.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/hexagon.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/lower.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/orange_backslash.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/orange_bar.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/orange_corner.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/orange_diamond.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/orange_dot.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/orange_hexagon.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/orange_lower.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/orange_pointer.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/orange_rectangle.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/orange_right.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/orange_slash.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/orange_stripe.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/orange_triangle.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/orange_triangle_line.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/orange_triangle_turned.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/orange_turned_T.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/orange_x.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/pointer.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/purple_backslash.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/purple_bar.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/purple_corner.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/purple_diamond.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/purple_diamond_line.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/purple_dot.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/purple_hexagon.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/purple_lower.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/purple_pointer.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/purple_rectangle.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/purple_right.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/purple_slash.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/purple_stripe.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/purple_triangle.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/purple_triangle_line.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/purple_triangle_turned.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/purple_turned_T.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/purple_x.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/rectangle.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/red_backslash.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/red_bar.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/red_corner.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/red_diamond_line.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/red_dot.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/red_hexagon.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/red_lower.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/red_pointer.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/red_rectangle.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/red_right.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/red_slash.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/red_stripe.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/red_triangle.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/red_triangle_line.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/red_triangle_turned.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/red_turned_T.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/red_x.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/right.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/slash.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/stripe.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/triangle.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/triangle_line.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/triangle_turned.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/turned_T.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/white_backslash.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/white_bar.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/white_corner.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/white_diamond.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/white_diamond_line.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/white_dot.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/white_hexagon.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/white_lower.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/white_pointer.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/white_rectangle.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/white_right.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/white_slash.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/white_stripe.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/white_triangle.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/white_triangle_line.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/white_triangle_turned.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/white_turned_T.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/white_x.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/x.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/yellow_backslash.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/yellow_bar.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/yellow_corner.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/yellow_diamond.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/yellow_dot.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/yellow_hexagon.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/yellow_lower.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/yellow_pointer.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/yellow_rectangle.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/yellow_right.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/yellow_slash.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/yellow_stripe.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/yellow_triangle.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/yellow_triangle_line.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/yellow_triangle_turned.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/yellow_turned_T.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/osmc/foreground/yellow_x.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /frontend/static/img/route_alp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/img/route_alp.png -------------------------------------------------------------------------------- /frontend/static/img/route_hike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/img/route_hike.png -------------------------------------------------------------------------------- /frontend/static/img/route_int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/img/route_int.png -------------------------------------------------------------------------------- /frontend/static/img/route_mnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/img/route_mnt.png -------------------------------------------------------------------------------- /frontend/static/img/route_mnt1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/img/route_mnt1.png -------------------------------------------------------------------------------- /frontend/static/img/route_mnt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/img/route_mnt2.png -------------------------------------------------------------------------------- /frontend/static/img/route_nat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/img/route_nat.png -------------------------------------------------------------------------------- /frontend/static/img/route_nordic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/img/route_nordic.png -------------------------------------------------------------------------------- /frontend/static/img/route_other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/img/route_other.png -------------------------------------------------------------------------------- /frontend/static/img/route_reg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/img/route_reg.png -------------------------------------------------------------------------------- /frontend/static/img/route_ski.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/img/route_ski.png -------------------------------------------------------------------------------- /frontend/static/img/route_sled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/img/route_sled.png -------------------------------------------------------------------------------- /frontend/static/img/route_std.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/img/route_std.png -------------------------------------------------------------------------------- /frontend/static/img/route_unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymarkedtrails/waymarked-trails-site/df0194b845c92e92cc0433779544c321f3425d0e/frontend/static/img/route_unknown.png -------------------------------------------------------------------------------- /frontend/static/img/white_blue_bar.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/static/img/white_red_bar.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/static/img/yellow_diamond.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/static/js/help.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | $("[data-role='header'], [data-role='footer']").toolbar(); 3 | $("[data-role='footer-controlgroup']").controlgroup(); 4 | 5 | var lang = decodeURI(window.location.search.replace( 6 | new RegExp("^(?:.*[&\\?]lang(?:\\=([^&]*))?)?.*$", "i"), "$1")); 7 | if (lang) { 8 | $('.lang-link').each(function() { 9 | this.setAttribute('href', this.href + '?lang=' + lang); 10 | }); 11 | } 12 | }); 13 | -------------------------------------------------------------------------------- /frontend/static/packed/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /frontend/static/symbols/cycling/None.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /frontend/static/symbols/hiking/None.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /frontend/static/symbols/mtb/None.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /frontend/static/symbols/riding/None.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /frontend/static/symbols/skating/None.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /frontend/static/symbols/slopes/None.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /frontend/templates/error.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | 3 | {% block javascript %} 4 | 5 | {% endblock %} 6 | 7 | {% block sub_header %} 8 | {% trans %}Back to map{% endtrans %} 9 | {% endblock %} 10 | 11 | {% block main %} 12 |
{{ message }}
16 | 17 |{{ bugreport|markdown }}
18 | 19 | {% trans %}Original message{% endtrans %}: {{ srcmsg }} 20 |