16 lines
492 B
HTML
16 lines
492 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html manifest="appcache.manifest">
|
||
|
|
<head>
|
||
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||
|
|
<title>Offline Map example in web browser</title>
|
||
|
|
<link type="text/css" rel="stylesheet" href="style.css" />
|
||
|
|
<link type="text/css" rel="stylesheet" href="leaflet.css" />
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div id="map"></div>
|
||
|
|
<script src="pouchdb-1.1.0.js"></script>
|
||
|
|
<script src="leaflet-src.js"></script>
|
||
|
|
<script src="map.js"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|