17

我们可以使用如下坐标列表创建 LineString:

     Geometry g1 = new GeometryFactory().createLineString(coordinates);

我们如何使用坐标列表创建多边形?

提前致谢。

4

3 回答 3

36

接受的答案在 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);
于 2015-04-24T13:01:53.607 回答
12

使用这些代码行:

 GeometryFactory fact = new GeometryFactory();
 LinearRing linear = new GeometryFactory().createLinearRing(coordinates);
 Polygon poly = new Polygon(linear, null, fact);

我希望它会有所帮助:)

于 2012-06-28T09:47:14.707 回答
-1

你看过他们的文档吗?看看 - http://www.vividsolutions.com/jts/javadoc/com/vividsolutions/jts/geom/Polygon.html

我认为这非常简单。我希望这能解决你的问题。

于 2011-07-04T10:12:27.433 回答