c#.Net中的Circlular Geofencing

GSR*_*ddy 3 c# bing-maps geofencing

我在Bing地图中画了一个圆圈.现在我需要编写一个点(纬度,经度)是在圆圈内部还是外部的代码?

c#.Net中有任何算法代码吗?

ken*_*n2k 5

只需计算distance between the center of the circle and your current coordinate,并将此距离与圆半径进行比较(距离<=半径表示坐标位于圆内).

要计算两点之间的距离,请使用Haversine公式.

你会在这里找到一个C#实现.