lib/leaflet/debug/tests/add_remove_layers.html in leaflet-js-0.6.beta4 vs lib/leaflet/debug/tests/add_remove_layers.html in leaflet-js-0.7.0

- old
+ new

@@ -4,11 +4,10 @@ <title>Leaflet debug page</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <link rel="stylesheet" href="../../dist/leaflet.css" /> - <!--[if lte IE 8]><link rel="stylesheet" href="../../dist/leaflet.ie.css" /><![endif]--> <link rel="stylesheet" href="../css/screen.css" /> <script type='text/javascript' src='http://code.jquery.com/jquery-1.8.0.js'></script> <script> @@ -30,12 +29,12 @@ var osmAttrib = 'Map data © OpenStreetMap contributors'; var osm = new L.TileLayer(osmUrl, { minZoom: 1, maxZoom: 17, attribution: osmAttrib, detectRetina: true }); map.addLayer(osm); map.fitBounds(new L.LatLngBounds([51,7],[51,7])); drawTestLine(); - + }; function drawTestLine() { var lat = 51; var long = 7; @@ -44,22 +43,22 @@ var myCircle = new L.Circle(new L.LatLng(lat, long),3); myCircle.on('click', function (e) { popup = new L.Popup(); popup.setLatLng(this.getLatLng()); - + var popuptxt = "Hello!"; alert("I am the click function"); popup.setContent(popuptxt); map.openPopup(popup); - - + + }); myLayerGroup.addLayer(myCircle); lat = lat + 0.0001; long = long + 0.0001; - + } map.addLayer(myLayerGroup); };