目前我在确定标记是否在圆形阵列内部时遇到问题 . 我提供的代码设法仅知道一到两个圆圈的标记,而其他人不知道 .

创建圆的代码

$.ajax({
        type: "GET",
        url: 'http://localhost:59927//api//Values//FlagingDevice(WithoutParameters)',
        contentType: 'application/json; charset=utf-8',
        dataType: 'json',
        success: function (data, status, xhr) {
            for (var i = 0; i < data.Table.length; i++) {
                circle[i] = L.circle([data.Table[i].Latitude, data.Table[i].Longitude], 50, { color: '#FFFFFF', opacity: 0.5, fillColor: 'white', fillOpacity: .3 }).addTo(map);
            }
        },
        error: function (xhr) {
            alert(xhr.responseText);
        }
    });

代码确定标记是否在圆形数组内

$.ajax({
                type: "POST",
                url: '',
                data: {
                    Name: value
                },
                success: function (data, status, xhr) {
                    for (var s = 0; s < marker1.length; s++) {
                        map.removeLayer(marker1[s]);
                    }
                    for (var i = 0; i < data.length; i++) {
                        var value = i + 1;

                        if (circle[i].contains(L.latLng([data[i].Latitude, data[i].Longitude]))) {
                            var customPopup1 = 'Station: ' + data[i].StationName;

                            var customOptions1 =
                            {
                                'maxWidth': '500',
                                'className': 'custom'

                            };

                            circle[i].bindPopup(customPopup1, customOptions1);

                        }

                        else {
                            marker1[i] = L.marker([data[i].Latitude, data[i].Longitude]).addTo(map);

                            var customPopup = 'Latitude: ' + data[i].Latitude + '</br>Longitude: ' + data[i].Longitude
                                + '</br>Station: ' + data[i].StationName + ' </br>Box: ' + data[i].Name + '</br>Timestamp: ' + data[i].LocationSend
                                + `
<a href='/Home/History?DeviceID=${value}'>Click here for Location History</a>
`; marker1[i].bindPopup(customPopup); } } setTimeout(function () { getCookie("Token", variable); }, 10000); }, error: function (xhr) { alert(xhr.responseText); } });