Google 地图 - 使用一组经/纬度点创建多边形
我在城市或地区周围有 10 到 700 个经度和纬度点的组。 我想创建一个多边形或“斑点”来覆盖这些点定义的区域。
我可以在我们的服务器上预处理点以节省时间。
有没有人做过这样的事情或见过任何有用的工具?
I have groups of 10 to 700 longitude and latitude points around a city or region.
I would like to create a polygon or "blob" to cover area defined by these points.
I Could pre-process points on our server to save time.
has anyone done anything like this or seen any useful tools?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了找到您谈论的多边形,您需要计算点的凸包。有很多可用的算法。 在这里您可以找到一个 PHP 版本。
In order to find the polygon you talk about you need the compute the convex hull of your points. There are plenty of algorithms available. Here you can find one in PHP.