Last active
June 30, 2017 10:39
-
-
Save pokorson/5c5418aab5b3ce04fd56eaabb6590006 to your computer and use it in GitHub Desktop.
Sample data for workshops
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var markers = [ | |
{ | |
score: 9, | |
count: 145, | |
homeTeam: "Lawrence Library", | |
awayTeam: "LUGip", | |
markerImage: "images/red.png", | |
information: "Linux users group meets second Wednesday of each month.", | |
fixture: "Wednesday 7pm" | |
}, | |
{ | |
score: 4, | |
count: 100, | |
homeTeam: "Hamilton Library", | |
awayTeam: "LUGip HW SIG", | |
markerImage: "images/white.png", | |
information: "Linux users can meet the first Tuesday of the month to work out harward and configuration issues.", | |
fixture: "Tuesday 7pm" | |
}, | |
{ | |
point: 6, | |
count: 58, | |
homeTeam: "Applebees", | |
awayTeam: "After LUPip Mtg Spot", | |
markerImage: "images/newcastle.png", | |
information: "Some of us go there after the main LUGip meeting, drink brews, and talk.", | |
fixture: "Wednesday whenever" | |
} | |
] | |
var homeTeams = ["Lawrence Library", "Hamilton Library", "Applebees"]; | |
var fruits = ['Apple', 'Banana', 'Apple', 'Durian', 'Durian', 'Durian'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment