gpt4 book ai didi

routes - 如何将带权重的折线转换为传单中的多边形?

转载 作者:行者123 更新时间:2023-12-05 00:19:24 25 4
gpt4 key购买 nike

我需要允许用户绘制具有指定道路半径的路线(使用折线)(视觉上它是用“重量”参数完成的)。

视觉上看起来是这样的:

enter image description here

所以我想知道如何围绕这条折线构建一个带有一些偏移的多边形?像这样:

enter image description here

最佳答案

最后我用 JSTS 库( https://www.npmjs.com/package/jsts )做了它。

这很简单:

//pathCoords should be an array of jsts.geom.Coordinate
var pathCoords = [];
var geometryFactory = new jsts.geom.GeometryFactory();

// on what distance new polygon should be built
var distance = (meters * 0.0001) / 111.12;
var shell = geometryFactory.createLineString(pathCoords);

// building a new polygon
var polygon = shell.buffer(distance);

// finally get your new polygon coordinates
var polygonCoords = polygon.getCoordinates();

关于routes - 如何将带权重的折线转换为传单中的多边形?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36132689/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com