Advertisement
Guest User

Untitled

a guest
Nov 14th, 2012
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.     <head>
  4.         <meta name="layout" content="main"/>
  5.         <title>...</title>
  6.        
  7.         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  8.  
  9.         <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.4.5/leaflet.css" />
  10.         <!--[if lte IE 8]>
  11.             <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.4.5/leaflet.ie.css" />
  12.         <![endif]-->
  13.         <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
  14.         <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.9.1/jquery-ui.min.js"></script>
  15.         <script src="http://cdn.leafletjs.com/leaflet-0.4.5/leaflet.js"></script>
  16.        
  17.         <script>
  18.             var map = L.map('leaflet-map').setView([0.0, 0.0], 10);
  19.             L.tileLayer('.../{z}/{x}/{y}.png', {
  20.                
  21.             }).addTo(map);
  22.         </script>
  23.        
  24.     </head>
  25.     <body>
  26.    
  27.     <div id="leaflet-map">
  28.        
  29.     </div>
  30.    
  31.     </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement