I had to make the following change in layer.js to accomodate my boxes
showing up a higher resolution.  It does not seem to pick up the minimum
resolution.

calculateInRange: function() {
        var inRange = false;
        if (this.map) {
            var resolution = this.map.getResolution();
            if (this.minResolution >= 0.00004291534423828125) {
                this.minResolution = 0.0000107288360595703125;
            }
            inRange = ( (resolution >= this.minResolution) &&
                        (resolution <= this.maxResolution) );
        }
        return inRange;
    },

Thanks,

Linda
_______________________________________________
Users mailing list
[email protected]
http://openlayers.org/mailman/listinfo/users

Reply via email to