Skip to content

Instantly share code, notes, and snippets.

@Talleyran
Created March 6, 2012 10:39
Show Gist options
  • Save Talleyran/1985624 to your computer and use it in GitHub Desktop.
Save Talleyran/1985624 to your computer and use it in GitHub Desktop.
Генерация разрешений и масштабов для слоя
var maxResolution = 156543.03390625,
resolutions = [],
scales = []
units = 'm'
for( var i=0; i<20; i++){
var res = maxResolution/Math.pow(2,i)
resolutions.push(res)
scales.push(OpenLayers.Util.getScaleFromResolution(res,units))
}
console.log(resolutions,scales)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment