Remove right-handed polygon handling in renderer

Since ol.render.Feature assumes right-handed polygons anyway, this
extra optimization is not needed.
This commit is contained in:
Andreas Hocevar
2015-10-28 09:05:47 +01:00
parent 5832943773
commit 5d264d2bf0
5 changed files with 5 additions and 52 deletions

View File

@@ -74,8 +74,6 @@ ol.format.MVT = function(opt_options) {
*/
this.layers_ = options.layers ? options.layers : null;
this.rightHandedPolygons = true;
};
goog.inherits(ol.format.MVT, ol.format.Feature);