Changeset 35064 in osm for applications/editors/josm/plugins/jts/src/org/openstreetmap
- Timestamp:
- 2019-07-10T22:46:01+02:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/jts/src/org/openstreetmap/josm/plugins/jts/JTSConverter.java
r34524 r35064 91 91 92 92 // TODO: need to check tags to determine whether area or not 93 if (way.isClosed()) { 93 if (way.isClosed() && coordSeq.size() >= 4) { 94 94 LinearRing ring = new LinearRing(coordSeq, getGeometryFactory()); 95 95 return new Polygon(ring, null, getGeometryFactory());
Note:
See TracChangeset
for help on using the changeset viewer.