Rename defaultDataProjection to dataProjection #8152

This commit is contained in:
ThomasG77
2018-05-03 21:12:41 +02:00
committed by Guillaume Beraudo
parent 6c538c12f6
commit cbaa9a7567
12 changed files with 28 additions and 29 deletions

View File

@@ -16,7 +16,7 @@ import {get as getProjection} from '../proj.js';
/**
* @typedef {Object} Options
* @property {module:ol/proj~ProjectionLike} [defaultDataProjection='EPSG:4326'] Default data projection.
* @property {module:ol/proj~ProjectionLike} [dataProjection='EPSG:4326'] Default data projection.
* @property {string} [layerName] Set the name of the TopoJSON topology
* `objects`'s children as feature property with the specified name. This means
* that when set to `'layer'`, a topology like
@@ -69,9 +69,9 @@ const TopoJSON = function(opt_options) {
/**
* @inheritDoc
*/
this.defaultDataProjection = getProjection(
options.defaultDataProjection ?
options.defaultDataProjection : 'EPSG:4326');
this.dataProjection = getProjection(
options.dataProjection ?
options.dataProjection : 'EPSG:4326');
};
@@ -416,7 +416,7 @@ TopoJSON.prototype.readProjection;
* @inheritDoc
*/
TopoJSON.prototype.readProjectionFromObject = function(object) {
return this.defaultDataProjection;
return this.dataProjection;
};