mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
This gets us out of the business of maintaining our own icons. The milsymbol library generates the SVG data needed to display anything covered by APP-6.
33 lines
940 B
HTML
33 lines
940 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>DCS Liberation Map</title>
|
|
<script src="qrc:///qtwebchannel/qwebchannel.js"></script>
|
|
|
|
<link rel="stylesheet" href="lib/leaflet/leaflet.css" />
|
|
<script src="lib/leaflet/leaflet.js"></script>
|
|
|
|
<script src="lib/esri-leaflet/esri-leaflet.js"></script>
|
|
|
|
<link
|
|
rel="stylesheet"
|
|
href="lib/leaflet-groupedlayercontrol/leaflet.groupedlayercontrol.min.css" />
|
|
<script
|
|
src="lib/leaflet-groupedlayercontrol/leaflet.groupedlayercontrol.min.js">
|
|
</script>
|
|
|
|
<link rel="stylesheet" href="lib/leaflet-ruler/leaflet-ruler.css">
|
|
<script src="lib/leaflet-ruler/leaflet-ruler.js"></script>
|
|
|
|
<script src="lib/milsymbol/milsymbol.js"></script>
|
|
|
|
<script src="map.js" defer="defer"></script>
|
|
<style>
|
|
body { padding: 0; margin: 0; }
|
|
html, body, #map { height: 100%; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="map"></div>
|
|
</body>
|
|
</html> |