Skip to content

Latest commit

 

History

History
53 lines (37 loc) · 1.63 KB

README.md

File metadata and controls

53 lines (37 loc) · 1.63 KB

Ballard Seafood Festival 😛

https://map.seafoodfest.org

The official web application for Ballard's annual Seafood Festival. Using data provided by the Ballard Commons, this interactive map helps folks find their favorite food, music, games, and sponsors at the iconic event.

Development

Application

This project is a Single Page Application (SPA) bootstrapped by Create React App.

To get started, clone the repository and install the npm dependences

npm i

Start the local development server

npm start

The app should be available at http://127.0.0.1:3000

Data

Mapbox Studio is used to to host the two static geojson files located in src/data.

This is a geojson FeatureCollection that contains location and metadata for for all vendor, entertainment, arts & crafts. Each feature contains a properties object with the following information

      "properties": {
        "id": 9993,
        "left_panel": "true",
        "name": "Salmon BBQ",
        "rotate": "90",
        "show_icon": "false",
        "show_label": "true",
        "type": "Food Vendor"
      }

This geojson file is used to render labels for the Main Stage, VIP area, Beer Garden, etc at the centroid of their representative polygons.