Home About

Navigator

Created //

—Work In Progress—

(This page is not yet complete)

Navigator

What is this... it's a little toy to present a photo collection in a different way. Here's the context:

What you need to do:

JSON Data structure

Each root-level property should be a unique key for a photo. The value should be an object with the following properties:

{
  "photo1KeyValue": {
    "name": "Display Name for Photo 1, Should Be Less Than 20 chars",
    "image": "path/image1filename.jpg",
    "description": "(optional) A more complete description of the photo, should be less than 100 chars",
    "links": [
      {
        "type": "nav",
        "typeClass": "up",
        "x": 45,
        "y" 30,
        "target": "photo2KeyValue"
      }
    ]
  },
  "photo2KeyValue": {
    "name": "Display Name for Photo 2, Should Be Less Than 20 chars",
    "image": "path/image2filename.jpg",
    "description": "(optional) A more complete description of the photo, should be less than 100 chars",
    "links": [
      {
        "type": "nav",
        "typeClass": "up",
        "x": 65,
        "y" 50,
        "target": "photo1KeyValue"
      }
    ]
  }
}

// ka