Skip to content

Commit

Permalink
Use nonPlacedRecords to store records that are not within Oakland
Browse files Browse the repository at this point in the history
  • Loading branch information
mbilker committed Jan 28, 2017
1 parent 2095810 commit 49ea310
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

//Array of markers
var markers = new Array();
var nullRecords = new Array();
var nonPlacedRecords = new Array();

//Create a new Date object for the current date
var currentDate = new Date();
Expand Down Expand Up @@ -225,7 +225,7 @@
record.pin.addTo(map);
markers.push(record);
} else {
nullRecords.push(record);
nonPlacedRecords.push(record);
}
})
});
Expand Down

0 comments on commit 49ea310

Please sign in to comment.