index.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <!DOCTYPE html>
  2. <!--
  3. Copyright (c) 2021 Clementine Computing LLC.
  4. This file is part of RideLogic.
  5. RideLogic is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU Affero General Public License as published by
  7. the Free Software Foundation, either version 3 of the License, or
  8. (at your option) any later version.
  9. RideLogic is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU Affero General Public License for more details.
  13. You should have received a copy of the GNU Affero General Public License
  14. along with RideLogic. If not, see <https://www.gnu.org/licenses/>.
  15. -->
  16. <html lang="en">
  17. <head>
  18. <meta content="text/html;charset=utf-8" http-equiv="Content-Type">
  19. <meta content="utf-8" http-equiv="encoding">
  20. <title>RideLogic AVLS</title>
  21. <link rel="stylesheet" href="css/ol.css" type="text/css">
  22. <script src="js/jquery.js"></script>
  23. <script src="js/ol.js"></script>
  24. <style>
  25. .map {
  26. width: 100%;
  27. height:500px;
  28. /* height:100%; */
  29. }
  30. </style>
  31. </head>
  32. <body>
  33. <div id="map" class="map"><div id="popup"></div></div>
  34. <script src="js/pb2jsonlib.js"></script>
  35. <script src="js/RideLogicAVLS.js"></script>
  36. </body>
  37. </html>