Rename ol.projection to ol.proj

This commit is contained in:
Tom Payne
2013-05-30 18:55:58 +02:00
parent 795ea69982
commit 46553c719c
50 changed files with 345 additions and 370 deletions

View File

@@ -197,7 +197,7 @@ describe('ol.extent', function() {
describe('transform', function() {
it('does transform', function() {
var transformFn = ol.projection.getTransform('EPSG:4326', 'EPSG:3857');
var transformFn = ol.proj.getTransform('EPSG:4326', 'EPSG:3857');
var sourceExtent = [-15, 45, -30, 60];
var destinationExtent = ol.extent.transform(sourceExtent, transformFn);
expect(destinationExtent).not.to.be(undefined);
@@ -240,4 +240,4 @@ describe('ol.extent', function() {
goog.require('ol.Size');
goog.require('ol.extent');
goog.require('ol.projection');
goog.require('ol.proj');