Remove type cast in ol/format/EsriJSON

This commit is contained in:
Frederic Junod
2018-12-12 14:41:12 +01:00
parent 480b064f5d
commit 4010a644c0
+39 -46
View File
@@ -211,7 +211,7 @@ class EsriJSON extends JSONFeature {
* *
* @param {Array<import("../Feature.js").default>} features Features. * @param {Array<import("../Feature.js").default>} features Features.
* @param {import("./Feature.js").WriteOptions=} opt_options Write options. * @param {import("./Feature.js").WriteOptions=} opt_options Write options.
* @return {Object} EsriJSON Object. * @return {EsriJSONFeatureSet} EsriJSON Object.
* @override * @override
* @api * @api
*/ */
@@ -221,9 +221,9 @@ class EsriJSON extends JSONFeature {
for (let i = 0, ii = features.length; i < ii; ++i) { for (let i = 0, ii = features.length; i < ii; ++i) {
objects.push(this.writeFeatureObject(features[i], opt_options)); objects.push(this.writeFeatureObject(features[i], opt_options));
} }
return /** @type {EsriJSONFeatureSet} */ ({ return {
'features': objects 'features': objects
}); };
} }
} }
@@ -414,40 +414,41 @@ function readPolygonGeometry(object) {
/** /**
* @param {import("../geom/Geometry.js").default} geometry Geometry. * @param {import("../geom/Geometry.js").default} geometry Geometry.
* @param {import("./Feature.js").WriteOptions=} opt_options Write options. * @param {import("./Feature.js").WriteOptions=} opt_options Write options.
* @return {EsriJSONGeometry} EsriJSON geometry. * @return {EsriJSONPoint} EsriJSON geometry.
*/ */
function writePointGeometry(geometry, opt_options) { function writePointGeometry(geometry, opt_options) {
const coordinates = /** @type {import("../geom/Point.js").default} */ (geometry).getCoordinates(); const coordinates = /** @type {import("../geom/Point.js").default} */ (geometry).getCoordinates();
/** @type {EsriJSONPoint} */
let esriJSON; let esriJSON;
const layout = /** @type {import("../geom/Point.js").default} */ (geometry).getLayout(); const layout = /** @type {import("../geom/Point.js").default} */ (geometry).getLayout();
if (layout === GeometryLayout.XYZ) { if (layout === GeometryLayout.XYZ) {
esriJSON = /** @type {EsriJSONPoint} */ ({ esriJSON = {
x: coordinates[0], x: coordinates[0],
y: coordinates[1], y: coordinates[1],
z: coordinates[2] z: coordinates[2]
}); };
} else if (layout === GeometryLayout.XYM) { } else if (layout === GeometryLayout.XYM) {
esriJSON = /** @type {EsriJSONPoint} */ ({ esriJSON = {
x: coordinates[0], x: coordinates[0],
y: coordinates[1], y: coordinates[1],
m: coordinates[2] m: coordinates[2]
}); };
} else if (layout === GeometryLayout.XYZM) { } else if (layout === GeometryLayout.XYZM) {
esriJSON = /** @type {EsriJSONPoint} */ ({ esriJSON = {
x: coordinates[0], x: coordinates[0],
y: coordinates[1], y: coordinates[1],
z: coordinates[2], z: coordinates[2],
m: coordinates[3] m: coordinates[3]
}); };
} else if (layout === GeometryLayout.XY) { } else if (layout === GeometryLayout.XY) {
esriJSON = /** @type {EsriJSONPoint} */ ({ esriJSON = {
x: coordinates[0], x: coordinates[0],
y: coordinates[1] y: coordinates[1]
}); };
} else { } else {
assert(false, 34); // Invalid geometry layout assert(false, 34); // Invalid geometry layout
} }
return /** @type {EsriJSONGeometry} */ (esriJSON); return esriJSON;
} }
@@ -474,15 +475,13 @@ function getHasZM(geometry) {
function writeLineStringGeometry(geometry, opt_options) { function writeLineStringGeometry(geometry, opt_options) {
const lineString = /** @type {import("../geom/LineString.js").default} */ (geometry); const lineString = /** @type {import("../geom/LineString.js").default} */ (geometry);
const hasZM = getHasZM(lineString); const hasZM = getHasZM(lineString);
return ( return {
/** @type {EsriJSONPolyline} */ { hasZ: hasZM.hasZ,
hasZ: hasZM.hasZ, hasM: hasZM.hasM,
hasM: hasZM.hasM, paths: [
paths: [ /** @type {Array<EsriJSONPosition>} */ (lineString.getCoordinates())
/** @type {Array<EsriJSONPosition>} */ (lineString.getCoordinates()) ]
] };
}
);
} }
@@ -495,13 +494,11 @@ function writePolygonGeometry(geometry, opt_options) {
const polygon = /** @type {import("../geom/Polygon.js").default} */ (geometry); const polygon = /** @type {import("../geom/Polygon.js").default} */ (geometry);
// Esri geometries use the left-hand rule // Esri geometries use the left-hand rule
const hasZM = getHasZM(polygon); const hasZM = getHasZM(polygon);
return ( return {
/** @type {EsriJSONPolygon} */ { hasZ: hasZM.hasZ,
hasZ: hasZM.hasZ, hasM: hasZM.hasM,
hasM: hasZM.hasM, rings: /** @type {Array<Array<EsriJSONPosition>>} */ (polygon.getCoordinates(false))
rings: /** @type {Array<Array<EsriJSONPosition>>} */ (polygon.getCoordinates(false)) };
}
);
} }
@@ -513,13 +510,11 @@ function writePolygonGeometry(geometry, opt_options) {
function writeMultiLineStringGeometry(geometry, opt_options) { function writeMultiLineStringGeometry(geometry, opt_options) {
const multiLineString = /** @type {import("../geom/MultiLineString.js").default} */ (geometry); const multiLineString = /** @type {import("../geom/MultiLineString.js").default} */ (geometry);
const hasZM = getHasZM(multiLineString); const hasZM = getHasZM(multiLineString);
return ( return {
/** @type {EsriJSONPolyline} */ { hasZ: hasZM.hasZ,
hasZ: hasZM.hasZ, hasM: hasZM.hasM,
hasM: hasZM.hasM, paths: /** @type {Array<Array<EsriJSONPosition>>} */ (multiLineString.getCoordinates())
paths: /** @type {Array<Array<EsriJSONPosition>>} */ (multiLineString.getCoordinates()) };
}
);
} }
@@ -531,13 +526,11 @@ function writeMultiLineStringGeometry(geometry, opt_options) {
function writeMultiPointGeometry(geometry, opt_options) { function writeMultiPointGeometry(geometry, opt_options) {
const multiPoint = /** @type {import("../geom/MultiPoint.js").default} */ (geometry); const multiPoint = /** @type {import("../geom/MultiPoint.js").default} */ (geometry);
const hasZM = getHasZM(multiPoint); const hasZM = getHasZM(multiPoint);
return ( return {
/** @type {EsriJSONMultipoint} */ { hasZ: hasZM.hasZ,
hasZ: hasZM.hasZ, hasM: hasZM.hasM,
hasM: hasZM.hasM, points: /** @type {Array<EsriJSONPosition>} */ (multiPoint.getCoordinates())
points: /** @type {Array<EsriJSONPosition>} */ (multiPoint.getCoordinates()) };
}
);
} }
@@ -555,11 +548,11 @@ function writeMultiPolygonGeometry(geometry, opt_options) {
output.push(coordinates[i][x]); output.push(coordinates[i][x]);
} }
} }
return /** @type {EsriJSONPolygon} */ ({ return {
hasZ: hasZM.hasZ, hasZ: hasZM.hasZ,
hasM: hasZM.hasM, hasM: hasZM.hasM,
rings: output rings: /** @type {Array<Array<EsriJSONPosition>>} */ (output)
}); };
} }