我正在使用Google Maps,试图找出一个点是否在其他两个点之间。到目前为止,我一直在做的事情是制作两个向量。在两个“检查”点之间,一个在“检查”点之一与“新”点之间。在计算出向量之后,我将它们进行了交叉,并得到了一个交叉值。
然后,我对所有“检查”点都进行了相同的操作,如果新的crossProduct小于旧的crossProduct,则我将其关闭。
这已经进行得太远了,但是现在我遇到了无法解决的麻烦。因此,我正在寻找另一个公式,以找出该点是否在其他两个点之间,并且存在误差。

希望你能帮我解决这个问题

最佳答案

在原始两点之间构造一条折线。然后使用isLocationOnEdge函数确定第三个点是否在折线的一定角度范围内。

例如

<!DOCTYPE html>
<html>
<head>
<title>Is a point within x degrees of a polyline</title>

<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<style type="text/css">
html { height: 100% }
body { height: 100%; margin: 0; padding: 0 }
#map_canvas { width:100%; height:100%; }
</style>
<!-- need to load the geometry library -->
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?libraries=geometry&sensor=false"></script>

<script type="text/javascript">
    function initialize() {
        var latlng = new google.maps.LatLng(54.5003526, -3.0844116);

        var myOptions = {
            zoom: 10,
            center: latlng,
            mapTypeId: google.maps.MapTypeId.ROADMAP
        };
        var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);

        var marker = new google.maps.Marker({
            position: latlng,
            map: map,
            title: "foo"
        });

        var latLng1 = new google.maps.LatLng(54.60039, -3.13632);
        var latLng2 = new google.maps.LatLng(54.36897, -3.07561);

        var polyline = new google.maps.Polyline({
            path: [latLng1, latLng2],
            strokeColor: "#FF0000",
            strokeOpacity: 1.0,
            strokeWeight: 2,
            map: map
        });

        console.log(google.maps.geometry.poly.isLocationOnEdge(latlng, polyline));
        console.log(google.maps.geometry.poly.isLocationOnEdge(latlng, polyline, 1));
        console.log(google.maps.geometry.poly.isLocationOnEdge(latlng, polyline, 0.1));
        console.log(google.maps.geometry.poly.isLocationOnEdge(latlng, polyline, 0.01));
        console.log(google.maps.geometry.poly.isLocationOnEdge(latlng, polyline, 0.001));
        console.log(google.maps.geometry.poly.isLocationOnEdge(latlng, polyline, 0.0001));
        console.log(google.maps.geometry.poly.isLocationOnEdge(latlng, polyline, 0.00001));
    }

    google.maps.event.addDomListener(window, 'load', initialize);
</script>

</head>
<body>
    <div id="map_canvas"></div>
</body>
</html>


这样做,我可以看到我的点在我的线的0.1度以内,但不在它的0.01度以内。您的度数容忍度将视情况而定。

关于javascript - 找出LngLat点是否在其他两个点之间,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20400342/

10-09 17:40