Implement a way to show the points to visit on the image.
Considerations:
- How interactive should this image be, if at all?
- What sort of label should be displayed alongside the points?
- Can we connect the points with a line showing the route?
Implementation Ideas
This StackOverflow post describes how to use the <map> element to place clickable points on an image (or rather, within an <area> element). This seems like a promising option, we would just need to consider the above points, as well as how to best implement an automatic generation of this. In that regard:
- Books can be easily associated with a given shelf
- Those shelves can have a coordinate location that is pre-defined within the image
Implement a way to show the points to visit on the image.
Considerations:
Implementation Ideas
This StackOverflow post describes how to use the
<map>element to place clickable points on an image (or rather, within an<area>element). This seems like a promising option, we would just need to consider the above points, as well as how to best implement an automatic generation of this. In that regard: