Use string instead of ol.proj.Units enum in examples
This commit is contained in:
@@ -4,7 +4,6 @@ goog.require('ol.View2D');
|
|||||||
goog.require('ol.extent');
|
goog.require('ol.extent');
|
||||||
goog.require('ol.layer.Image');
|
goog.require('ol.layer.Image');
|
||||||
goog.require('ol.proj.Projection');
|
goog.require('ol.proj.Projection');
|
||||||
goog.require('ol.proj.Units');
|
|
||||||
goog.require('ol.source.ImageStatic');
|
goog.require('ol.source.ImageStatic');
|
||||||
|
|
||||||
|
|
||||||
@@ -13,7 +12,7 @@ goog.require('ol.source.ImageStatic');
|
|||||||
// map can use to properly display the layer.
|
// map can use to properly display the layer.
|
||||||
var pixelProjection = new ol.proj.Projection({
|
var pixelProjection = new ol.proj.Projection({
|
||||||
code: 'pixel',
|
code: 'pixel',
|
||||||
units: ol.proj.Units.PIXELS,
|
units: 'pixels',
|
||||||
extent: [0, 0, 1024, 968]
|
extent: [0, 0, 1024, 968]
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -5,7 +5,6 @@ goog.require('ol.View2D');
|
|||||||
goog.require('ol.layer.Image');
|
goog.require('ol.layer.Image');
|
||||||
goog.require('ol.layer.Tile');
|
goog.require('ol.layer.Tile');
|
||||||
goog.require('ol.proj.Projection');
|
goog.require('ol.proj.Projection');
|
||||||
goog.require('ol.proj.Units');
|
|
||||||
goog.require('ol.source.ImageWMS');
|
goog.require('ol.source.ImageWMS');
|
||||||
goog.require('ol.source.TileWMS');
|
goog.require('ol.source.TileWMS');
|
||||||
|
|
||||||
@@ -48,7 +47,7 @@ var layers = [
|
|||||||
// projection object.
|
// projection object.
|
||||||
var projection = new ol.proj.Projection({
|
var projection = new ol.proj.Projection({
|
||||||
code: 'EPSG:21781',
|
code: 'EPSG:21781',
|
||||||
units: ol.proj.Units.METERS
|
units: 'm'
|
||||||
});
|
});
|
||||||
|
|
||||||
var map = new ol.Map({
|
var map = new ol.Map({
|
||||||
|
|||||||
+1
-2
@@ -4,7 +4,6 @@ goog.require('ol.View2D');
|
|||||||
goog.require('ol.layer.Tile');
|
goog.require('ol.layer.Tile');
|
||||||
goog.require('ol.proj');
|
goog.require('ol.proj');
|
||||||
goog.require('ol.proj.Projection');
|
goog.require('ol.proj.Projection');
|
||||||
goog.require('ol.proj.Units');
|
|
||||||
goog.require('ol.source.Zoomify');
|
goog.require('ol.source.Zoomify');
|
||||||
|
|
||||||
// This server does not support CORS, and so is incompatible with WebGL.
|
// This server does not support CORS, and so is incompatible with WebGL.
|
||||||
@@ -26,7 +25,7 @@ var imgCenter = [imgWidth / 2, - imgHeight / 2];
|
|||||||
// can use to properly display the layer.
|
// can use to properly display the layer.
|
||||||
var proj = new ol.proj.Projection({
|
var proj = new ol.proj.Projection({
|
||||||
code: 'ZOOMIFY',
|
code: 'ZOOMIFY',
|
||||||
units: ol.proj.Units.PIXELS,
|
units: 'pixels',
|
||||||
extent: [0, 0, imgWidth, imgHeight]
|
extent: [0, 0, imgWidth, imgHeight]
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user