Server-side checking of a point's existence inside a polygonal area using Google Maps API v3
- 阅读更多 关于 Server-side checking of a point's existence inside a polygonal area using Google Maps API v3
问题 The logic is: user is editing an existing polygonal area of which extreme points are stored in the database. After editing the modified co-ordinates are updated in the database. Now I need to find whether a certain point exists inside the modified polygon or not. For that I'm assuming I have to do the server-side checking. The client-side checking is easily done by javaScript and that I've done already. The real problem I'm having is to check this on the server-side. Any suggestions? 回答1: I