iwa-panda2

Manage Weather Data by International Weather Agency (Version 2)
Log | Files | Refs | README

map.html (1328B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3 <head>
      4     <meta charset="UTF-8">
      5     <meta name="viewport" content="width=device-width, initial-scale=1" />
      6     <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
      7     <title>Map</title>
      8     <link rel="stylesheet" type="text/css" href="/css/dashboard.css"/>
      9     <link rel="stylesheet" type="text/css" href="/css/map.css"/>
     10     
     11     <link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY=" crossorigin="" />
     12     <script src="https://unpkg.com/[email protected]/dist/leaflet.js" integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo=" crossorigin=""></script>
     13 </head>
     14 <body>
     15 <nav class="navbar">
     16     <ul>
     17         <li><a href="/dashboard" class="a-small-logo"><IMG class="img-small-logo" SRC="/img/small_logo.png"></a></li>
     18         <li><a href="/dashboard" class="a-big-logo"><IMG class="img-big-logo" SRC="/img/big-logo.png"></a></li>
     19         <li><a href="/dashboard">Dashboard</a></li>
     20         <li><a href="/hdata">Historical Data</a></li>
     21         <li><a href="#" class="active">Map</a></li>
     22         <li><a href="/user">User</a></li>
     23         <li><a href="/logout">Logout</a></li>
     24     </ul>
     25 </nav>
     26 
     27 <div id=map></div>
     28 
     29 <script src="/js/map.js"></script>
     30 </body>
     31 </html>