Fixing typo.

This commit is contained in:
ahocevar
2012-02-29 10:49:40 +01:00
parent b7eba35077
commit 557d7ab0d7

View File

@@ -100,7 +100,7 @@ Old:
units: "m",
layers: [
new OpenLayers.Layer.Google("Google Streets"),
new OpenLayers.Layer.OSM(null, null, {isBaseLayer: false, opcity: 0.7})
new OpenLayers.Layer.OSM(null, null, {isBaseLayer: false, opacity: 0.7})
],
zoom: 1
});
@@ -112,7 +112,7 @@ New:
projection: "EPSG:900913",
layers: [
new OpenLayers.Layer.Google("Google Streets"),
new OpenLayers.Layer.OSM(null, null, {isBaseLayer: false, opcity: 0.7})
new OpenLayers.Layer.OSM(null, null, {isBaseLayer: false, opacity: 0.7})
],
zoom: 1
});