当我们有坐标列表时,如何在 JTS 中创建多边形?
我们可以使用坐标列表创建一个 LineString,如下所示:
Geometry g1 = new GeometryFactory().createLineString(coordinates);
How can we create a Polygon using paths?
提前致谢。
We can create a LineString using coordinates list like this:
Geometry g1 = new GeometryFactory().createLineString(coordinates);
How can we create a polygon using coordinates list?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
被接受的答案在 2012 年可能仍然有效(仍然很尴尬),但现在你真的应该像这样简单地做:
The accepted answer might have still been valid (still awkward) in 2012 but nowadays you should really do it simply like this:
使用这行代码:
我希望它会有所帮助:)
Use these line of codes:
I hope it will help :)