678 lines
19 KiB
JavaScript
678 lines
19 KiB
JavaScript
/**
|
|
* @module ol/format/EsriJSON
|
|
*/
|
|
import {inherits} from '../index.js';
|
|
import _ol_Feature_ from '../Feature.js';
|
|
import _ol_asserts_ from '../asserts.js';
|
|
import {containsExtent} from '../extent.js';
|
|
import FeatureFormat from '../format/Feature.js';
|
|
import JSONFeature from '../format/JSONFeature.js';
|
|
import GeometryLayout from '../geom/GeometryLayout.js';
|
|
import GeometryType from '../geom/GeometryType.js';
|
|
import LineString from '../geom/LineString.js';
|
|
import LinearRing from '../geom/LinearRing.js';
|
|
import MultiLineString from '../geom/MultiLineString.js';
|
|
import MultiPoint from '../geom/MultiPoint.js';
|
|
import MultiPolygon from '../geom/MultiPolygon.js';
|
|
import Point from '../geom/Point.js';
|
|
import Polygon from '../geom/Polygon.js';
|
|
import _ol_geom_flat_deflate_ from '../geom/flat/deflate.js';
|
|
import _ol_geom_flat_orient_ from '../geom/flat/orient.js';
|
|
import _ol_obj_ from '../obj.js';
|
|
import {get as getProjection} from '../proj.js';
|
|
|
|
/**
|
|
* @classdesc
|
|
* Feature format for reading and writing data in the EsriJSON format.
|
|
*
|
|
* @constructor
|
|
* @extends {ol.format.JSONFeature}
|
|
* @param {olx.format.EsriJSONOptions=} opt_options Options.
|
|
* @api
|
|
*/
|
|
var EsriJSON = function(opt_options) {
|
|
|
|
var options = opt_options ? opt_options : {};
|
|
|
|
JSONFeature.call(this);
|
|
|
|
/**
|
|
* Name of the geometry attribute for features.
|
|
* @type {string|undefined}
|
|
* @private
|
|
*/
|
|
this.geometryName_ = options.geometryName;
|
|
|
|
};
|
|
|
|
inherits(EsriJSON, JSONFeature);
|
|
|
|
|
|
/**
|
|
* @param {EsriJSONGeometry} object Object.
|
|
* @param {olx.format.ReadOptions=} opt_options Read options.
|
|
* @private
|
|
* @return {ol.geom.Geometry} Geometry.
|
|
*/
|
|
EsriJSON.readGeometry_ = function(object, opt_options) {
|
|
if (!object) {
|
|
return null;
|
|
}
|
|
/** @type {ol.geom.GeometryType} */
|
|
var type;
|
|
if (typeof object.x === 'number' && typeof object.y === 'number') {
|
|
type = GeometryType.POINT;
|
|
} else if (object.points) {
|
|
type = GeometryType.MULTI_POINT;
|
|
} else if (object.paths) {
|
|
if (object.paths.length === 1) {
|
|
type = GeometryType.LINE_STRING;
|
|
} else {
|
|
type = GeometryType.MULTI_LINE_STRING;
|
|
}
|
|
} else if (object.rings) {
|
|
var layout = EsriJSON.getGeometryLayout_(object);
|
|
var rings = EsriJSON.convertRings_(object.rings, layout);
|
|
object = /** @type {EsriJSONGeometry} */(_ol_obj_.assign({}, object));
|
|
if (rings.length === 1) {
|
|
type = GeometryType.POLYGON;
|
|
object.rings = rings[0];
|
|
} else {
|
|
type = GeometryType.MULTI_POLYGON;
|
|
object.rings = rings;
|
|
}
|
|
}
|
|
var geometryReader = EsriJSON.GEOMETRY_READERS_[type];
|
|
return (
|
|
/** @type {ol.geom.Geometry} */ FeatureFormat.transformWithOptions(
|
|
geometryReader(object), false, opt_options)
|
|
);
|
|
};
|
|
|
|
|
|
/**
|
|
* Determines inner and outer rings.
|
|
* Checks if any polygons in this array contain any other polygons in this
|
|
* array. It is used for checking for holes.
|
|
* Logic inspired by: https://github.com/Esri/terraformer-arcgis-parser
|
|
* @param {Array.<!Array.<!Array.<number>>>} rings Rings.
|
|
* @param {ol.geom.GeometryLayout} layout Geometry layout.
|
|
* @private
|
|
* @return {Array.<!Array.<!Array.<number>>>} Transformed rings.
|
|
*/
|
|
EsriJSON.convertRings_ = function(rings, layout) {
|
|
var flatRing = [];
|
|
var outerRings = [];
|
|
var holes = [];
|
|
var i, ii;
|
|
for (i = 0, ii = rings.length; i < ii; ++i) {
|
|
flatRing.length = 0;
|
|
_ol_geom_flat_deflate_.coordinates(flatRing, 0, rings[i], layout.length);
|
|
// is this ring an outer ring? is it clockwise?
|
|
var clockwise = _ol_geom_flat_orient_.linearRingIsClockwise(flatRing, 0,
|
|
flatRing.length, layout.length);
|
|
if (clockwise) {
|
|
outerRings.push([rings[i]]);
|
|
} else {
|
|
holes.push(rings[i]);
|
|
}
|
|
}
|
|
while (holes.length) {
|
|
var hole = holes.shift();
|
|
var matched = false;
|
|
// loop over all outer rings and see if they contain our hole.
|
|
for (i = outerRings.length - 1; i >= 0; i--) {
|
|
var outerRing = outerRings[i][0];
|
|
var containsHole = containsExtent(
|
|
new LinearRing(outerRing).getExtent(),
|
|
new LinearRing(hole).getExtent()
|
|
);
|
|
if (containsHole) {
|
|
// the hole is contained push it into our polygon
|
|
outerRings[i].push(hole);
|
|
matched = true;
|
|
break;
|
|
}
|
|
}
|
|
if (!matched) {
|
|
// no outer rings contain this hole turn it into and outer
|
|
// ring (reverse it)
|
|
outerRings.push([hole.reverse()]);
|
|
}
|
|
}
|
|
return outerRings;
|
|
};
|
|
|
|
|
|
/**
|
|
* @param {EsriJSONGeometry} object Object.
|
|
* @private
|
|
* @return {ol.geom.Geometry} Point.
|
|
*/
|
|
EsriJSON.readPointGeometry_ = function(object) {
|
|
var point;
|
|
if (object.m !== undefined && object.z !== undefined) {
|
|
point = new Point([object.x, object.y, object.z, object.m],
|
|
GeometryLayout.XYZM);
|
|
} else if (object.z !== undefined) {
|
|
point = new Point([object.x, object.y, object.z],
|
|
GeometryLayout.XYZ);
|
|
} else if (object.m !== undefined) {
|
|
point = new Point([object.x, object.y, object.m],
|
|
GeometryLayout.XYM);
|
|
} else {
|
|
point = new Point([object.x, object.y]);
|
|
}
|
|
return point;
|
|
};
|
|
|
|
|
|
/**
|
|
* @param {EsriJSONGeometry} object Object.
|
|
* @private
|
|
* @return {ol.geom.Geometry} LineString.
|
|
*/
|
|
EsriJSON.readLineStringGeometry_ = function(object) {
|
|
var layout = EsriJSON.getGeometryLayout_(object);
|
|
return new LineString(object.paths[0], layout);
|
|
};
|
|
|
|
|
|
/**
|
|
* @param {EsriJSONGeometry} object Object.
|
|
* @private
|
|
* @return {ol.geom.Geometry} MultiLineString.
|
|
*/
|
|
EsriJSON.readMultiLineStringGeometry_ = function(object) {
|
|
var layout = EsriJSON.getGeometryLayout_(object);
|
|
return new MultiLineString(object.paths, layout);
|
|
};
|
|
|
|
|
|
/**
|
|
* @param {EsriJSONGeometry} object Object.
|
|
* @private
|
|
* @return {ol.geom.GeometryLayout} The geometry layout to use.
|
|
*/
|
|
EsriJSON.getGeometryLayout_ = function(object) {
|
|
var layout = GeometryLayout.XY;
|
|
if (object.hasZ === true && object.hasM === true) {
|
|
layout = GeometryLayout.XYZM;
|
|
} else if (object.hasZ === true) {
|
|
layout = GeometryLayout.XYZ;
|
|
} else if (object.hasM === true) {
|
|
layout = GeometryLayout.XYM;
|
|
}
|
|
return layout;
|
|
};
|
|
|
|
|
|
/**
|
|
* @param {EsriJSONGeometry} object Object.
|
|
* @private
|
|
* @return {ol.geom.Geometry} MultiPoint.
|
|
*/
|
|
EsriJSON.readMultiPointGeometry_ = function(object) {
|
|
var layout = EsriJSON.getGeometryLayout_(object);
|
|
return new MultiPoint(object.points, layout);
|
|
};
|
|
|
|
|
|
/**
|
|
* @param {EsriJSONGeometry} object Object.
|
|
* @private
|
|
* @return {ol.geom.Geometry} MultiPolygon.
|
|
*/
|
|
EsriJSON.readMultiPolygonGeometry_ = function(object) {
|
|
var layout = EsriJSON.getGeometryLayout_(object);
|
|
return new MultiPolygon(
|
|
/** @type {Array.<Array.<Array.<Array.<number>>>>} */(object.rings),
|
|
layout);
|
|
};
|
|
|
|
|
|
/**
|
|
* @param {EsriJSONGeometry} object Object.
|
|
* @private
|
|
* @return {ol.geom.Geometry} Polygon.
|
|
*/
|
|
EsriJSON.readPolygonGeometry_ = function(object) {
|
|
var layout = EsriJSON.getGeometryLayout_(object);
|
|
return new Polygon(object.rings, layout);
|
|
};
|
|
|
|
|
|
/**
|
|
* @param {ol.geom.Geometry} geometry Geometry.
|
|
* @param {olx.format.WriteOptions=} opt_options Write options.
|
|
* @private
|
|
* @return {EsriJSONGeometry} EsriJSON geometry.
|
|
*/
|
|
EsriJSON.writePointGeometry_ = function(geometry, opt_options) {
|
|
var coordinates = /** @type {ol.geom.Point} */ (geometry).getCoordinates();
|
|
var esriJSON;
|
|
var layout = /** @type {ol.geom.Point} */ (geometry).getLayout();
|
|
if (layout === GeometryLayout.XYZ) {
|
|
esriJSON = /** @type {EsriJSONPoint} */ ({
|
|
x: coordinates[0],
|
|
y: coordinates[1],
|
|
z: coordinates[2]
|
|
});
|
|
} else if (layout === GeometryLayout.XYM) {
|
|
esriJSON = /** @type {EsriJSONPoint} */ ({
|
|
x: coordinates[0],
|
|
y: coordinates[1],
|
|
m: coordinates[2]
|
|
});
|
|
} else if (layout === GeometryLayout.XYZM) {
|
|
esriJSON = /** @type {EsriJSONPoint} */ ({
|
|
x: coordinates[0],
|
|
y: coordinates[1],
|
|
z: coordinates[2],
|
|
m: coordinates[3]
|
|
});
|
|
} else if (layout === GeometryLayout.XY) {
|
|
esriJSON = /** @type {EsriJSONPoint} */ ({
|
|
x: coordinates[0],
|
|
y: coordinates[1]
|
|
});
|
|
} else {
|
|
_ol_asserts_.assert(false, 34); // Invalid geometry layout
|
|
}
|
|
return /** @type {EsriJSONGeometry} */ (esriJSON);
|
|
};
|
|
|
|
|
|
/**
|
|
* @param {ol.geom.SimpleGeometry} geometry Geometry.
|
|
* @private
|
|
* @return {Object} Object with boolean hasZ and hasM keys.
|
|
*/
|
|
EsriJSON.getHasZM_ = function(geometry) {
|
|
var layout = geometry.getLayout();
|
|
return {
|
|
hasZ: (layout === GeometryLayout.XYZ ||
|
|
layout === GeometryLayout.XYZM),
|
|
hasM: (layout === GeometryLayout.XYM ||
|
|
layout === GeometryLayout.XYZM)
|
|
};
|
|
};
|
|
|
|
|
|
/**
|
|
* @param {ol.geom.Geometry} geometry Geometry.
|
|
* @param {olx.format.WriteOptions=} opt_options Write options.
|
|
* @private
|
|
* @return {EsriJSONPolyline} EsriJSON geometry.
|
|
*/
|
|
EsriJSON.writeLineStringGeometry_ = function(geometry, opt_options) {
|
|
var hasZM = EsriJSON.getHasZM_(/** @type {ol.geom.LineString} */(geometry));
|
|
return /** @type {EsriJSONPolyline} */ ({
|
|
hasZ: hasZM.hasZ,
|
|
hasM: hasZM.hasM,
|
|
paths: [
|
|
/** @type {ol.geom.LineString} */ (geometry).getCoordinates()
|
|
]
|
|
});
|
|
};
|
|
|
|
|
|
/**
|
|
* @param {ol.geom.Geometry} geometry Geometry.
|
|
* @param {olx.format.WriteOptions=} opt_options Write options.
|
|
* @private
|
|
* @return {EsriJSONPolygon} EsriJSON geometry.
|
|
*/
|
|
EsriJSON.writePolygonGeometry_ = function(geometry, opt_options) {
|
|
// Esri geometries use the left-hand rule
|
|
var hasZM = EsriJSON.getHasZM_(/** @type {ol.geom.Polygon} */(geometry));
|
|
return /** @type {EsriJSONPolygon} */ ({
|
|
hasZ: hasZM.hasZ,
|
|
hasM: hasZM.hasM,
|
|
rings: /** @type {ol.geom.Polygon} */ (geometry).getCoordinates(false)
|
|
});
|
|
};
|
|
|
|
|
|
/**
|
|
* @param {ol.geom.Geometry} geometry Geometry.
|
|
* @param {olx.format.WriteOptions=} opt_options Write options.
|
|
* @private
|
|
* @return {EsriJSONPolyline} EsriJSON geometry.
|
|
*/
|
|
EsriJSON.writeMultiLineStringGeometry_ = function(geometry, opt_options) {
|
|
var hasZM = EsriJSON.getHasZM_(/** @type {ol.geom.MultiLineString} */(geometry));
|
|
return /** @type {EsriJSONPolyline} */ ({
|
|
hasZ: hasZM.hasZ,
|
|
hasM: hasZM.hasM,
|
|
paths: /** @type {ol.geom.MultiLineString} */ (geometry).getCoordinates()
|
|
});
|
|
};
|
|
|
|
|
|
/**
|
|
* @param {ol.geom.Geometry} geometry Geometry.
|
|
* @param {olx.format.WriteOptions=} opt_options Write options.
|
|
* @private
|
|
* @return {EsriJSONMultipoint} EsriJSON geometry.
|
|
*/
|
|
EsriJSON.writeMultiPointGeometry_ = function(geometry, opt_options) {
|
|
var hasZM = EsriJSON.getHasZM_(/** @type {ol.geom.MultiPoint} */(geometry));
|
|
return /** @type {EsriJSONMultipoint} */ ({
|
|
hasZ: hasZM.hasZ,
|
|
hasM: hasZM.hasM,
|
|
points: /** @type {ol.geom.MultiPoint} */ (geometry).getCoordinates()
|
|
});
|
|
};
|
|
|
|
|
|
/**
|
|
* @param {ol.geom.Geometry} geometry Geometry.
|
|
* @param {olx.format.WriteOptions=} opt_options Write options.
|
|
* @private
|
|
* @return {EsriJSONPolygon} EsriJSON geometry.
|
|
*/
|
|
EsriJSON.writeMultiPolygonGeometry_ = function(geometry,
|
|
opt_options) {
|
|
var hasZM = EsriJSON.getHasZM_(/** @type {ol.geom.MultiPolygon} */(geometry));
|
|
var coordinates = /** @type {ol.geom.MultiPolygon} */ (geometry).getCoordinates(false);
|
|
var output = [];
|
|
for (var i = 0; i < coordinates.length; i++) {
|
|
for (var x = coordinates[i].length - 1; x >= 0; x--) {
|
|
output.push(coordinates[i][x]);
|
|
}
|
|
}
|
|
return /** @type {EsriJSONPolygon} */ ({
|
|
hasZ: hasZM.hasZ,
|
|
hasM: hasZM.hasM,
|
|
rings: output
|
|
});
|
|
};
|
|
|
|
|
|
/**
|
|
* @const
|
|
* @private
|
|
* @type {Object.<ol.geom.GeometryType, function(EsriJSONGeometry): ol.geom.Geometry>}
|
|
*/
|
|
EsriJSON.GEOMETRY_READERS_ = {};
|
|
EsriJSON.GEOMETRY_READERS_[GeometryType.POINT] =
|
|
EsriJSON.readPointGeometry_;
|
|
EsriJSON.GEOMETRY_READERS_[GeometryType.LINE_STRING] =
|
|
EsriJSON.readLineStringGeometry_;
|
|
EsriJSON.GEOMETRY_READERS_[GeometryType.POLYGON] =
|
|
EsriJSON.readPolygonGeometry_;
|
|
EsriJSON.GEOMETRY_READERS_[GeometryType.MULTI_POINT] =
|
|
EsriJSON.readMultiPointGeometry_;
|
|
EsriJSON.GEOMETRY_READERS_[GeometryType.MULTI_LINE_STRING] =
|
|
EsriJSON.readMultiLineStringGeometry_;
|
|
EsriJSON.GEOMETRY_READERS_[GeometryType.MULTI_POLYGON] =
|
|
EsriJSON.readMultiPolygonGeometry_;
|
|
|
|
|
|
/**
|
|
* @const
|
|
* @private
|
|
* @type {Object.<string, function(ol.geom.Geometry, olx.format.WriteOptions=): (EsriJSONGeometry)>}
|
|
*/
|
|
EsriJSON.GEOMETRY_WRITERS_ = {};
|
|
EsriJSON.GEOMETRY_WRITERS_[GeometryType.POINT] =
|
|
EsriJSON.writePointGeometry_;
|
|
EsriJSON.GEOMETRY_WRITERS_[GeometryType.LINE_STRING] =
|
|
EsriJSON.writeLineStringGeometry_;
|
|
EsriJSON.GEOMETRY_WRITERS_[GeometryType.POLYGON] =
|
|
EsriJSON.writePolygonGeometry_;
|
|
EsriJSON.GEOMETRY_WRITERS_[GeometryType.MULTI_POINT] =
|
|
EsriJSON.writeMultiPointGeometry_;
|
|
EsriJSON.GEOMETRY_WRITERS_[GeometryType.MULTI_LINE_STRING] =
|
|
EsriJSON.writeMultiLineStringGeometry_;
|
|
EsriJSON.GEOMETRY_WRITERS_[GeometryType.MULTI_POLYGON] =
|
|
EsriJSON.writeMultiPolygonGeometry_;
|
|
|
|
|
|
/**
|
|
* Read a feature from a EsriJSON Feature source. Only works for Feature,
|
|
* use `readFeatures` to read FeatureCollection source.
|
|
*
|
|
* @function
|
|
* @param {ArrayBuffer|Document|Node|Object|string} source Source.
|
|
* @param {olx.format.ReadOptions=} opt_options Read options.
|
|
* @return {ol.Feature} Feature.
|
|
* @api
|
|
*/
|
|
EsriJSON.prototype.readFeature;
|
|
|
|
|
|
/**
|
|
* Read all features from a EsriJSON source. Works with both Feature and
|
|
* FeatureCollection sources.
|
|
*
|
|
* @function
|
|
* @param {ArrayBuffer|Document|Node|Object|string} source Source.
|
|
* @param {olx.format.ReadOptions=} opt_options Read options.
|
|
* @return {Array.<ol.Feature>} Features.
|
|
* @api
|
|
*/
|
|
EsriJSON.prototype.readFeatures;
|
|
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
EsriJSON.prototype.readFeatureFromObject = function(
|
|
object, opt_options) {
|
|
var esriJSONFeature = /** @type {EsriJSONFeature} */ (object);
|
|
var geometry = EsriJSON.readGeometry_(esriJSONFeature.geometry,
|
|
opt_options);
|
|
var feature = new _ol_Feature_();
|
|
if (this.geometryName_) {
|
|
feature.setGeometryName(this.geometryName_);
|
|
}
|
|
feature.setGeometry(geometry);
|
|
if (opt_options && opt_options.idField &&
|
|
esriJSONFeature.attributes[opt_options.idField]) {
|
|
feature.setId(/** @type {number} */(
|
|
esriJSONFeature.attributes[opt_options.idField]));
|
|
}
|
|
if (esriJSONFeature.attributes) {
|
|
feature.setProperties(esriJSONFeature.attributes);
|
|
}
|
|
return feature;
|
|
};
|
|
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
EsriJSON.prototype.readFeaturesFromObject = function(
|
|
object, opt_options) {
|
|
var esriJSONObject = /** @type {EsriJSONObject} */ (object);
|
|
var options = opt_options ? opt_options : {};
|
|
if (esriJSONObject.features) {
|
|
var esriJSONFeatureCollection = /** @type {EsriJSONFeatureCollection} */
|
|
(object);
|
|
/** @type {Array.<ol.Feature>} */
|
|
var features = [];
|
|
var esriJSONFeatures = esriJSONFeatureCollection.features;
|
|
var i, ii;
|
|
options.idField = object.objectIdFieldName;
|
|
for (i = 0, ii = esriJSONFeatures.length; i < ii; ++i) {
|
|
features.push(this.readFeatureFromObject(esriJSONFeatures[i],
|
|
options));
|
|
}
|
|
return features;
|
|
} else {
|
|
return [this.readFeatureFromObject(object, options)];
|
|
}
|
|
};
|
|
|
|
|
|
/**
|
|
* Read a geometry from a EsriJSON source.
|
|
*
|
|
* @function
|
|
* @param {ArrayBuffer|Document|Node|Object|string} source Source.
|
|
* @param {olx.format.ReadOptions=} opt_options Read options.
|
|
* @return {ol.geom.Geometry} Geometry.
|
|
* @api
|
|
*/
|
|
EsriJSON.prototype.readGeometry;
|
|
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
EsriJSON.prototype.readGeometryFromObject = function(
|
|
object, opt_options) {
|
|
return EsriJSON.readGeometry_(
|
|
/** @type {EsriJSONGeometry} */(object), opt_options);
|
|
};
|
|
|
|
|
|
/**
|
|
* Read the projection from a EsriJSON source.
|
|
*
|
|
* @function
|
|
* @param {ArrayBuffer|Document|Node|Object|string} source Source.
|
|
* @return {ol.proj.Projection} Projection.
|
|
* @api
|
|
*/
|
|
EsriJSON.prototype.readProjection;
|
|
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
EsriJSON.prototype.readProjectionFromObject = function(object) {
|
|
var esriJSONObject = /** @type {EsriJSONObject} */ (object);
|
|
if (esriJSONObject.spatialReference && esriJSONObject.spatialReference.wkid) {
|
|
var crs = esriJSONObject.spatialReference.wkid;
|
|
return getProjection('EPSG:' + crs);
|
|
} else {
|
|
return null;
|
|
}
|
|
};
|
|
|
|
|
|
/**
|
|
* @param {ol.geom.Geometry} geometry Geometry.
|
|
* @param {olx.format.WriteOptions=} opt_options Write options.
|
|
* @private
|
|
* @return {EsriJSONGeometry} EsriJSON geometry.
|
|
*/
|
|
EsriJSON.writeGeometry_ = function(geometry, opt_options) {
|
|
var geometryWriter = EsriJSON.GEOMETRY_WRITERS_[geometry.getType()];
|
|
return geometryWriter(/** @type {ol.geom.Geometry} */(
|
|
FeatureFormat.transformWithOptions(geometry, true, opt_options)),
|
|
opt_options);
|
|
};
|
|
|
|
|
|
/**
|
|
* Encode a geometry as a EsriJSON string.
|
|
*
|
|
* @function
|
|
* @param {ol.geom.Geometry} geometry Geometry.
|
|
* @param {olx.format.WriteOptions=} opt_options Write options.
|
|
* @return {string} EsriJSON.
|
|
* @api
|
|
*/
|
|
EsriJSON.prototype.writeGeometry;
|
|
|
|
|
|
/**
|
|
* Encode a geometry as a EsriJSON object.
|
|
*
|
|
* @param {ol.geom.Geometry} geometry Geometry.
|
|
* @param {olx.format.WriteOptions=} opt_options Write options.
|
|
* @return {EsriJSONGeometry} Object.
|
|
* @override
|
|
* @api
|
|
*/
|
|
EsriJSON.prototype.writeGeometryObject = function(geometry,
|
|
opt_options) {
|
|
return EsriJSON.writeGeometry_(geometry,
|
|
this.adaptOptions(opt_options));
|
|
};
|
|
|
|
|
|
/**
|
|
* Encode a feature as a EsriJSON Feature string.
|
|
*
|
|
* @function
|
|
* @param {ol.Feature} feature Feature.
|
|
* @param {olx.format.WriteOptions=} opt_options Write options.
|
|
* @return {string} EsriJSON.
|
|
* @api
|
|
*/
|
|
EsriJSON.prototype.writeFeature;
|
|
|
|
|
|
/**
|
|
* Encode a feature as a esriJSON Feature object.
|
|
*
|
|
* @param {ol.Feature} feature Feature.
|
|
* @param {olx.format.WriteOptions=} opt_options Write options.
|
|
* @return {Object} Object.
|
|
* @override
|
|
* @api
|
|
*/
|
|
EsriJSON.prototype.writeFeatureObject = function(
|
|
feature, opt_options) {
|
|
opt_options = this.adaptOptions(opt_options);
|
|
var object = {};
|
|
var geometry = feature.getGeometry();
|
|
if (geometry) {
|
|
object['geometry'] =
|
|
EsriJSON.writeGeometry_(geometry, opt_options);
|
|
if (opt_options && opt_options.featureProjection) {
|
|
object['geometry']['spatialReference'] = /** @type {EsriJSONCRS} */({
|
|
wkid: getProjection(opt_options.featureProjection).getCode().split(':').pop()
|
|
});
|
|
}
|
|
}
|
|
var properties = feature.getProperties();
|
|
delete properties[feature.getGeometryName()];
|
|
if (!_ol_obj_.isEmpty(properties)) {
|
|
object['attributes'] = properties;
|
|
} else {
|
|
object['attributes'] = {};
|
|
}
|
|
return object;
|
|
};
|
|
|
|
|
|
/**
|
|
* Encode an array of features as EsriJSON.
|
|
*
|
|
* @function
|
|
* @param {Array.<ol.Feature>} features Features.
|
|
* @param {olx.format.WriteOptions=} opt_options Write options.
|
|
* @return {string} EsriJSON.
|
|
* @api
|
|
*/
|
|
EsriJSON.prototype.writeFeatures;
|
|
|
|
|
|
/**
|
|
* Encode an array of features as a EsriJSON object.
|
|
*
|
|
* @param {Array.<ol.Feature>} features Features.
|
|
* @param {olx.format.WriteOptions=} opt_options Write options.
|
|
* @return {Object} EsriJSON Object.
|
|
* @override
|
|
* @api
|
|
*/
|
|
EsriJSON.prototype.writeFeaturesObject = function(features, opt_options) {
|
|
opt_options = this.adaptOptions(opt_options);
|
|
var objects = [];
|
|
var i, ii;
|
|
for (i = 0, ii = features.length; i < ii; ++i) {
|
|
objects.push(this.writeFeatureObject(features[i], opt_options));
|
|
}
|
|
return /** @type {EsriJSONFeatureCollection} */ ({
|
|
'features': objects
|
|
});
|
|
};
|
|
export default EsriJSON;
|