2017-06-09 06:25:25 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2017-06-29 00:49:42 +00:00
|
|
|
<title>Civilization Map</title>
|
2017-06-10 16:13:19 +00:00
|
|
|
<script src="./resources/frameworks/jquery-3.2.1.min.js" type="text/javascript"></script>
|
2017-07-01 06:58:59 +00:00
|
|
|
<link rel="stylesheet" href="resources/map/css/style.css">
|
2017-06-30 00:47:03 +00:00
|
|
|
<script src="./resources/nav.js"></script>
|
2017-07-01 06:58:59 +00:00
|
|
|
<script src="./resources/map/map.js"></script>
|
2017-06-20 16:57:21 +00:00
|
|
|
|
|
|
|
<!-- Leaflet Interactive Map -->
|
|
|
|
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.0.3/dist/leaflet.css"
|
|
|
|
integrity="sha512-07I2e+7D8p6he1SIM+1twR5TIrhUQn9+I6yjqD53JQjFiMf8EtC93ty0/5vJTZGF8aAocvHYNEDJajGdNx1IsQ=="
|
|
|
|
crossorigin=""/>
|
2017-06-29 00:49:42 +00:00
|
|
|
|
2017-06-20 16:57:21 +00:00
|
|
|
<script src="https://unpkg.com/leaflet@1.0.3/dist/leaflet.js"
|
|
|
|
integrity="sha512-A7vV8IFfih/D732iSSKi20u/ooOfj/AGehOKq0f4vLT1Zr2Y+RX7C+w8A1gaSasGtRUZpF/NZgzSAu4/Gc41Lg=="
|
|
|
|
crossorigin=""></script>
|
2017-06-09 06:25:25 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2017-06-30 00:47:03 +00:00
|
|
|
<nav></nav>
|
2017-07-01 06:58:59 +00:00
|
|
|
<h1>Leaflet Map</h1>
|
|
|
|
<div id="leaflet_map"></div>
|
2017-06-29 00:49:42 +00:00
|
|
|
|
2017-07-01 06:58:59 +00:00
|
|
|
<h1>Civilization Map</h1>
|
|
|
|
<img src="resources/map/images/biome_map_full_10.png" alt="" id="biome_map">
|
2017-06-09 06:25:25 +00:00
|
|
|
</body>
|
|
|
|
</html>
|