File: index.html

package info (click to toggle)
modestmaps-js 3.3.6%2Bds2-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 1,184 kB
  • ctags: 1,465
  • sloc: makefile: 58
file content (28 lines) | stat: -rw-r--r-- 620 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>
  <head>
    <title>Modest Maps JS - Chaining Wrapper</title>
    <script type="text/javascript" src="../../modestmaps.js"></script>
    <script type="text/javascript">

window.onload = function() {
  var provider = new MM.TemplatedLayer('http://tile.openstreetmap.org/{Z}/{X}/{Y}.png');
  var map = new MM.Map(document.body, provider)
      .setCenter(new MM.Location(51.5001524, -0.1262362))
      .setZoom(11);
};

    </script>
    <style type="text/css">
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}
    </style>
  </head>
  <body> 
  </body>
</html>