Skip to content

badsectorlabs/defcon-food-map

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DEF CON Las Vegas Reasonably Priced Food Map

Discover cheap restaurants, bars, casinos, and stores near DEF CON in Las Vegas! This interactive map helps attendees find affordable food, drinks, and supplies within walking distance of the Las Vegas Convention Center, with walking times and deals for each location.

Contributions Welcome! Just edit venues.json and submit a pull request

Live Site

defconfood.badsectorlabs.com

Screenshot of the site

Setup & Usage

git clone https://github.com/badsectorlabs/defcon-food-map
cd defcon-food-map
python3 -m http.server
# Open a browser and go to http://127.0.0.1:8000

File Structure

  • index.html – Main HTML file, includes map and controls
  • app.js – Main JavaScript logic (loads map, venues, controls, deals table)
  • venues.json – List of venues (restaurants, bars, casinos, stores, events)
  • style.css – Custom styles (light/dark mode, responsive, map UI)

Data Structure (venues.json)

Each venue is an object with the following fields:

{
  "name": "Venue Name",
  "type": "restaurant" | "bar" | "casino" | "event" | "store",
  "lat": 36.123,
  "lng": -115.123,
  "deal": "$2.99 Special",
  "description": "Short description of the venue and deal.",
  "walk_time": 15, // in minutes
  "walk_category": "very_close" | "close" | "moderate" | "long" | "rideshare" | "event"
}

Contributing

  • Fork the repo and submit a pull request!
  • Please keep venues accurate and reasonably priced.
  • Add sources for new deals if possible.

Credits

License

MIT License. See LICENSE file if present.

About

Discover cheap restaurants, bars, and casinos near DEF CON

Resources

License

Stars

Watchers

Forks