我在这里有这段代码来确定一条线是否在一个圆圈中。(也许您可以使用它来作为您的答案的基础)
/**
*@param l1 Line point 1, containing latitude and longitude
*@param l2 Line point 2, containing latitude and longitude
*@param c Center of circle, containing latitude and longitud
*@param r Radius of the circle
**/
Maps.ui.inCircle = function(l1, l2, c, r){
var a = l1.lat() - l2.lat()
var b = l1.lng() - l2.lng()
var x = Math.sqrt(a*a + b*b)
return (Math.abs((c.lat() - l1.lat()) * (l2.lng() - l1.lng()) - (c.lng() - l1.lng()) * (l2.lat() - l1.lat())) / x <= r);
}
这非常适合。但是现在我需要确定一个点是否在一条线周围的区域中。例如,这里的蓝点将返回 true,而紫色线 I 将返回 true。但不是绿线或绿点。我还需要找出一条线是否穿过这条线。
这是我的代码,用于查看一条线是否与这条线相交:
function getLineIntersaction(y1,x1,y2,x2, y3,x3,y4,x4){
if (Math.max(X1,X2) < Math.min(X3,X4)) // This means no same coordinates
return false;
m1 = (y1-y2)/(x1-x2);
m2 = (y3-y4)/(x3-x4);
c1 = y1-m1x1;
c2 = y3-m2x3;
if(m1=m2)//segments are parallel.
return false;
var x = (c1-c2)/(m2-m1);
if(!isNaN(x) && isFinite(x)){
if( x < Math.max(Math.min(x1,x2),math.min(x3,x4)) || x > Math.min(Math.max(x1,x2),Math.max(x3,x4)))
return false;
else
return true;
}
return false;
}
所以这需要与其他代码集成。
我怎样才能做到这一点?我可以将函数传递一条线,也可以只传递一个点。
如果传递了一行,那么我们将运行上述函数。我希望它返回一个数组。如果数组中的第一项靠近它(在红色区域中),它将返回,如果线段切割线,则数组中的第二项将返回。这意味着如果它只是一个点,那么第二项将永远是错误的。
问题
如何判断一条线或点是否位于红色区域内?