Add missing semicolon. Non functional change.
git-svn-id: http://svn.openlayers.org/trunk/openlayers@11185 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
@@ -79,7 +79,7 @@ OpenLayers.Layer.Bing = OpenLayers.Class(OpenLayers.Layer.XYZ, {
|
||||
options = OpenLayers.Util.applyDefaults({
|
||||
restrictedMinZoom: 1,
|
||||
sphericalMercator: true
|
||||
}, options)
|
||||
}, options);
|
||||
var name = options.name || "Bing " + (options.type || this.type);
|
||||
|
||||
var newArgs = [name, null, options];
|
||||
|
||||
@@ -779,7 +779,7 @@ OpenLayers.Layer.Vector = OpenLayers.Class(OpenLayers.Layer, {
|
||||
// don't try to draw the feature with the renderer if the layer is not
|
||||
// drawn itself
|
||||
if (!this.drawn) {
|
||||
return
|
||||
return;
|
||||
}
|
||||
if (typeof style != "object") {
|
||||
if(!style && feature.state === OpenLayers.State.DELETE) {
|
||||
|
||||
@@ -256,7 +256,7 @@ OpenLayers.Layer.WMS = OpenLayers.Class(OpenLayers.Layer.Grid, {
|
||||
var projectionCode = this.projection.equals(mapProjection) ?
|
||||
this.projection.getCode() :
|
||||
mapProjection.getCode();
|
||||
var value = (projectionCode == "none") ? null : projectionCode
|
||||
var value = (projectionCode == "none") ? null : projectionCode;
|
||||
if (parseFloat(this.params.VERSION) >= 1.3) {
|
||||
this.params.CRS = value;
|
||||
} else {
|
||||
|
||||
@@ -105,7 +105,7 @@ OpenLayers.Layer.Zoomify = OpenLayers.Class(OpenLayers.Layer.Grid, {
|
||||
*/
|
||||
initializeZoomify: function( size ) {
|
||||
|
||||
var imageSize = size.clone()
|
||||
var imageSize = size.clone();
|
||||
var tiles = new OpenLayers.Size(
|
||||
Math.ceil( imageSize.w / this.standardTileSize ),
|
||||
Math.ceil( imageSize.h / this.standardTileSize )
|
||||
@@ -151,9 +151,9 @@ OpenLayers.Layer.Zoomify = OpenLayers.Class(OpenLayers.Layer.Grid, {
|
||||
OpenLayers.Layer.Grid.prototype.destroy.apply(this, arguments);
|
||||
|
||||
// Remove from memory the Zoomify pyramid - is that enough?
|
||||
this.tileCountUpToTier.length = 0
|
||||
this.tierSizeInTiles.length = 0
|
||||
this.tierImageSize.length = 0
|
||||
this.tileCountUpToTier.length = 0;
|
||||
this.tierSizeInTiles.length = 0;
|
||||
this.tierImageSize.length = 0;
|
||||
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user