Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
wax minified again
  • Loading branch information
xavijam committed Oct 3, 2012
1 parent 6751d60 commit ed80db0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
5 changes: 2 additions & 3 deletions examples/custom-popup.html
Expand Up @@ -46,7 +46,7 @@
debug: true
});
// Adding layer to map
map.addLayer(countries);
map.addLayer(countries, false);

// Now the CartoDB layer, the earthquakes
earthquakes = new L.CartoDBLayer({
Expand All @@ -65,7 +65,6 @@
document.body.style.cursor = "default";
},
featureClick: function(ev,latlng,pos,data) {

if (typeof( window.event ) != "undefined" ) {
// IE
ev.cancelBubble=true;
Expand All @@ -89,7 +88,7 @@
})

// Adding layer to map
map.addLayer(earthquakes);
map.addLayer(earthquakes, false);

}
</script>
Expand Down
5 changes: 2 additions & 3 deletions examples/esri.html
Expand Up @@ -24,8 +24,8 @@
, streetMapUrl = 'http://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer/tile/{z}/{y}/{x}'
, streetMapLayer = new L.TileLayer(streetMapUrl, { maxZoom: 19, attribution: 'Tiles: &copy; Esri' });

map.setView(new L.LatLng(36.204824, 138.252924), 6).addLayer(streetMapLayer,true);

map.addLayer(streetMapLayer,true);
map.setView(new L.LatLng(36.204824, 138.252924), 6);

// Create a CartoDB popup
var popup = new L.CartoDBPopup();
Expand Down Expand Up @@ -61,7 +61,6 @@

// Adding layer to map
map.addLayer(earthquakes,false);

}

</script>
Expand Down

0 comments on commit ed80db0

Please sign in to comment.