I'Ve got a problem with the $.inArray function from JQuery (I also tried indexOf)
My Code:
var branches = circles[i].branches;
var counter = 0;
for (var j = 0; j < branches.length; j++) {
var circle_branch = branches[j];
var index = $.inArray( circle_branch, activeBranchSettings);
if (index == -1)counter++;
}
if(counter == 0) circles[i].setMap(map);
So I'm working with the Google Maps API and I've a control panel with some categories (branches) where I toggle the Markers. Each circle (Marker) can have multiple branches and those ID's are attached to each circle. So I loop through the branches and want to find that ID in an other array (activeBranchSettings), every time there wasn't a match I increase a counter. If the counter is 0 in the end I toggle the circle on. So this tells which Markers should NOT be shown and which should.
Whether it'S the perfect way to solve it or not, the problem is that
var index = $.inArray( circle_branch, activeBranchSettings);
return -1 everytime! The value IS at that point in the array and I tried to convert "circle_branch" into a string with .toString(), but still no change, Any ideas?
activeBranchSettingsvariable? where it comes from? – archer Jan 9 at 0:58circle_branchvariable can be and also what can be in theactiveBranchSettingsarray. – Owlvark Jan 9 at 1:19circle_branchis an int andactiveBranchSettingsis an array with ints – user1959760 Jan 9 at 1:33$.inArray()returns -1 then you can be sure that the target value is not in the array. I expect your data is not what you think it is. – Beetroot-Beetroot Jan 9 at 5:24