实施地理围栏 - C#
我需要在 C# 中实现地理围栏。地理围栏区域可以是圆形、矩形、多边形等。有人用 C# 实现地理围栏吗?
我发现地理围栏 - 点内部/外部多边形。但是,它仅支持多边形。
I need to implement Geofence in C#. Geofence area can be round, rectangle, polygon etc. Does anyone have Geofence implementation in C#?
I found Geo Fencing - point inside/outside polygon. But, it supports polygon only.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我已经测试了各种实现,这个示例对我来说工作正常:
示例
I have tested various implementations and this example worked properly for me:
Example
请参阅我的实现:
多边形
圆
Refer to my Implementation:
Polygon
Circle
在此添加 C# 实现
这对我有用!
Adding both C# implementation here
It worked for me!