Merge pull request #8709 from schmidtk/ts-format-geojson

Fix TypeScript errors in ol/format/GeoJSON
This commit is contained in:
Frédéric Junod
2018-09-26 15:54:20 +02:00
committed by GitHub
+2 -2
View File
@@ -293,7 +293,7 @@ function readGeometry(object, opt_options) {
throw new Error('Unsupported GeoJSON type: ' + object.type); throw new Error('Unsupported GeoJSON type: ' + object.type);
} }
} }
return transformWithOptions(geometry, false, opt_options); return /** @type {import("../geom/Geometry.js").default} */ (transformWithOptions(geometry, false, opt_options));
} }
@@ -375,7 +375,7 @@ function readPolygonGeometry(object) {
* @return {GeoJSONGeometry} GeoJSON geometry. * @return {GeoJSONGeometry} GeoJSON geometry.
*/ */
function writeGeometry(geometry, opt_options) { function writeGeometry(geometry, opt_options) {
geometry = transformWithOptions(geometry, true, opt_options); geometry = /** @type {import("../geom/Geometry.js").default} */ (transformWithOptions(geometry, true, opt_options));
const type = geometry.getType(); const type = geometry.getType();
/** @type {GeoJSONGeometry} */ /** @type {GeoJSONGeometry} */