Revert "Merge branch 'master' of github.com:openlayers/openlayers"

This reverts commit 12f191a690, reversing
changes made to 49b3dc85c2. See #269.
This commit is contained in:
ahocevar
2012-03-05 18:55:32 +01:00
parent c8f0dfd728
commit fb3caf1561
7 changed files with 0 additions and 357 deletions
-34
View File
@@ -1,34 +0,0 @@
var map = new OpenLayers.Map({
div: "map",
layers: [new OpenLayers.Layer.OSM()],
controls: [
new OpenLayers.Control.Navigation({
dragPanOptions: {
enableKinetic: true
}
}),
new OpenLayers.Control.Attribution(),
new OpenLayers.Control.Zoom()
],
center: [0, 0],
zoom: 1
});
var map2 = new OpenLayers.Map({
div: "map2",
layers: [new OpenLayers.Layer.OSM()],
controls: [
new OpenLayers.Control.Navigation({
dragPanOptions: {
enableKinetic: true
}
}),
new OpenLayers.Control.Attribution(),
new OpenLayers.Control.Zoom({
zoomInId: "customZoomIn",
zoomOutId: "customZoomOut"
})
],
center: [0, 0],
zoom: 1
});