如何检测标记是否位于谷歌地图中的多边形内部
我在数据库中有大量多边形的坐标。我的数据库中还有标记的坐标。 我如何检测标记是否位于该多边形内。
注意:我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
现在 Google Map API 中有一个函数可以做到这一点。
多边形中的 Google 地图坐标
There is now a function in the Google Map API that does that.
Google Map coordinates in polygon
您应该选择多边形并以两种不同的形式对它们进行排序,一种按 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.
如果您使用 mysql 空间扩展,则可以使用 链接文本函数
If you use mysql spatial extensions, you can use link text function