如何检测标记是否位于谷歌地图中的多边形内部

发布于 2024-09-06 00:54:03 字数 164 浏览 3 评论 0原文

我在数据库中有大量多边形的坐标。我的数据库中还有标记的坐标。 我如何检测标记是否位于该多边形内。

注意:我使用 cronjob 来移动标记,在这个 cronjob 中它需要检测这一点。所以不涉及javascript!

多边形的形状不仅仅是圆形或正方形。例如,它可以是一个国家或海洋。

I've got loads of coordinates for a polygon in a database. I also have coordinates for an marker in my database.
How do i detect if the marker is inside this polyon.

Note: I use a cronjob to move the marker, and in this cronjob it needs to detect this. So javascript isn't involved!

Shape of polygon is not just a circle or square. It could be for example a country or sea.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

筱武穆 2024-09-13 00:54:03

现在 Google Map API 中有一个函数可以做到这一点。

多边形中的 Google 地图坐标

containsLocation(point:LatLng, polygon:Polygon);    
isLocationOnEdge(point:LatLng, poly:Polygon|Polyline, tolerance?:number);

There is now a function in the Google Map API that does that.

Google Map coordinates in polygon

containsLocation(point:LatLng, polygon:Polygon);    
isLocationOnEdge(point:LatLng, poly:Polygon|Polyline, tolerance?:number);
幸福%小乖 2024-09-13 00:54:03

您应该选择多边形并以两种不同的形式对它们进行排序,一种按 x 轴,一种按 y 轴,每次都按相同的参数对它们进行分组。然后确保标记点的 y 坐标位于同一 x 的多边形点的 y 坐标之间。并且标记 y 位于具有相同 y 的多边形点的 x 之间。

you should SELECT your polygons and SORT them in two different forms one by the x-axis, one by the y-axis, each time GROUPing them by the same parameter. then make sure the y coordinate of you marker point is between the y-coordinates of the polygon points of the same x. and that the marker y is between the x of the polygon points with the same y.

记忆で 2024-09-13 00:54:03

如果您使用 mysql 空间扩展,则可以使用 链接文本函数

If you use mysql spatial extensions, you can use link text function

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文