Sha256: e3554a0eea3d0c85932c0a7b821ccdef91aed02c159db0c3d224ee2e1dd3323f
Contents?: true
Size: 1020 Bytes
Versions: 6
Compression:
Stored size: 1020 Bytes
Contents
<!DOCTYPE html> <html> <head> <title>Leaflet debug page</title> <link rel="stylesheet" href="../../dist/leaflet.css" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="../css/screen.css" /> <script type="text/javascript" src="../../build/deps.js"></script> <script src="../leaflet-include.js"></script> <style> body { direction: rtl; } </style> </head> <body> <p>Click the map to place a popup at the mouse location</p> <div id="map"></div> <script type="text/javascript"> var cloudmade = L.tileLayer('http://{s}.tile.cloudmade.com/{key}/997/256/{z}/{x}/{y}.png', { maxZoom: 18, attribution: 'Map data © 2011 OpenStreetMap contributors, Imagery © 2011 CloudMade', key: 'd4fc77ea4a63471cab2423e66626cbb6' }); var map = L.map('map') .setView([50.5, 30.51], 15) .addLayer(cloudmade); map.on('click', function(e) { L.popup().setLatLng(e.latlng).setContent('Hello').openOn(map); }); </script> </body> </html>
Version data entries
6 entries across 6 versions & 1 rubygems