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.

link|improve this question

61% accept rate
The polygon trivially contains the rectangle as a special case(provided you manage to define what a rectangle on a sphere actually is). And circles can be checked with pythagoras' theorem. – CodeInChaos Mar 18 '11 at 13:26
feedback

1 Answer

up vote 1 down vote accepted

Refer to my Implementation:

Polygon

Circle

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.