98 lines
2.1 KiB
HTML
98 lines
2.1 KiB
HTML
<script
|
|
src="https://code.jquery.com/jquery-3.2.1.min.js"
|
|
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
|
|
crossorigin="anonymous"></script>
|
|
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.2.0/dist/leaflet.css"
|
|
integrity="sha512-M2wvCLH6DSRazYeZRIm1JnYyh22purTM+FDB5CsyxtQJYeKq83arPe5wgbNmcFXGqiSH2XR8dT/fJISVA1r/zQ=="
|
|
crossorigin=""/>
|
|
<script src="https://unpkg.com/leaflet@1.2.0/dist/leaflet.js"
|
|
integrity="sha512-lInM/apFSqyy1o6s89K4iQUKg6ppXEgsVxT35HbzUupEVRh2Eu9Wdl4tHj7dZO0s1uvplcYGmt3498TtHq+log=="
|
|
crossorigin=""></script>
|
|
|
|
<script src="https://rawgit.com/Leaflet/Leaflet.heat/gh-pages/dist/leaflet-heat.js"></script>
|
|
|
|
<script src="my.js"></script>
|
|
<style>
|
|
.mapDiv {
|
|
width: 1024px;
|
|
height: 768px;
|
|
}
|
|
|
|
.board {
|
|
width: 32px;
|
|
height: 32px;
|
|
display: inline-block;
|
|
position: relative;
|
|
}
|
|
|
|
.board img {
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
position: absolute;
|
|
/*bottom: 0px;*/
|
|
}
|
|
|
|
.board img:hover {
|
|
max-width: inherit;
|
|
max-height: inherit;
|
|
z-index: 99;
|
|
top: 20px;
|
|
}
|
|
|
|
.highlight {
|
|
/*what a nice way to highlight*/
|
|
display: none;
|
|
}
|
|
|
|
.simu {
|
|
background-color: blue;
|
|
}
|
|
|
|
.question {
|
|
background-color: orange;
|
|
}
|
|
|
|
.image {
|
|
background-color: green;
|
|
}
|
|
|
|
.audio {
|
|
background-color: red;
|
|
}
|
|
|
|
.video {
|
|
background-color: purple;
|
|
}
|
|
|
|
.other {
|
|
background-color: brown;
|
|
}
|
|
|
|
.map {
|
|
background-color: violet;
|
|
}
|
|
|
|
.error {
|
|
background-color: grey;
|
|
}
|
|
|
|
ul {
|
|
list-style-type: none;
|
|
overflow: auto;
|
|
overflow-y: hidden;
|
|
display: inline-block;
|
|
/*max-width:100%;
|
|
margin: 0 0 1em;
|
|
white-space: nowrap;
|
|
height:200px;*/
|
|
}
|
|
|
|
li {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
}
|
|
|
|
</style>
|
|
<div style="font-size:0.1px;position:absolute;bottom:0;">OSM Logo: CC-BY-SA
|
|
http://wiki.openstreetmap.org/wiki/File:Mag_map-120x120.png
|
|
</div> |