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