我们可以使用如下坐标列表创建 LineString:
Geometry g1 = new GeometryFactory().createLineString(coordinates);
我们如何使用坐标列表创建多边形?
提前致谢。
我们可以使用如下坐标列表创建 LineString:
Geometry g1 = new GeometryFactory().createLineString(coordinates);
我们如何使用坐标列表创建多边形?
提前致谢。
接受的答案在 2012 年可能仍然有效(仍然很尴尬),但现在你真的应该像这样简单地做到这一点:
// Create a GeometryFactory if you don't have one already
GeometryFactory geometryFactory = new GeometryFactory();
// Simply pass an array of Coordinate or a CoordinateSequence to its method
Polygon polygonFromCoordinates = geometryFactory.createPolygon(coordinates);
使用这些代码行:
GeometryFactory fact = new GeometryFactory();
LinearRing linear = new GeometryFactory().createLinearRing(coordinates);
Polygon poly = new Polygon(linear, null, fact);
我希望它会有所帮助:)
你看过他们的文档吗?看看 - http://www.vividsolutions.com/jts/javadoc/com/vividsolutions/jts/geom/Polygon.html
我认为这非常简单。我希望这能解决你的问题。