I have a Point which obtained through a long press MotionEvent.
Point mapPoint = mMapView.screenToLocation(new android.graphics.Point(Math.round(e.getX()), Math.round(e.getY())));
However, I need to verify if the point is lying within the polygon. I can't find any API in Geometry which allows me to check if the point is located inside the polygon.
Any idea?