ffmap-backend/html/geomap.html

37 lines
998 B
HTML
Raw Normal View History

2012-05-12 16:44:27 +02:00
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
2012-06-05 14:34:13 +02:00
<meta http-equiv="content-type" content="text/html;charset=utf-8">
2012-05-12 16:49:12 +02:00
<link rel="stylesheet" href="theme/default/style.css" type="text/css" />
<link href='style.css' rel='stylesheet' type='text/css' />
2012-05-12 16:49:12 +02:00
<style type="text/css">
#map {
float: left;
2012-05-12 17:06:00 +02:00
width: 100%;
2012-05-12 16:49:12 +02:00
box-sizing:border-box;
}
.olPopup p { margin:0px; }
</style>
2012-05-12 16:44:27 +02:00
<title>Freifunk Lübeck - Knotenkarte</title>
2012-05-12 16:49:12 +02:00
<script src="http://maps.burningsilicon.net/OpenLayers-2.8/OpenLayers.js"></script>
<script src="http://maps.burningsilicon.net/OpenLayers-2.8/OpenStreetMap.js"></script>
2012-06-12 01:58:29 +02:00
<script type="text/javascript" src="d3.v2.js"></script>
<script type="text/javascript" src="geomap.js"></script>
2012-05-12 16:44:27 +02:00
</head>
<body onload="init()">
<header>
<h1>luebeck.freifunk.net</h1>
<ul>
<li><a href="nodes.html">Knotengraph</a></li>
<li><a href="geomap.html">Knotenkarte</a></li>
</ul>
</header>
2012-05-12 16:44:27 +02:00
<div id="map"></div>
</body>
2012-05-12 16:49:12 +02:00
</html>