Includes: map markers to identify popular locations or places you might like to visit, a search function to easily discover these locations, and a listview to support simple browsing of all locations.
Simply click on this text to view the project
To install this software on your own machine:
- Clone the git repo to a directory on your computer (or download the zip from the sidebar on the right).
- In your terminal from the project's root directory, install the build dependencies with Node Package Manager by invoking
npm i
. If you don't have NPM, here are installation instructions. - Run
gulp
. If you don't have Gulp installed, runnpm i -g gulp
first. Your build will be in the dist folder.
All resources are open source under the MIT license. I provide no guarantees regarding this program, etc.
Davey Wilkie // Web: http://www2.hawaii.edu/~dwilkie/ // GitHub: https://github.com/daveywilkie/
This README file is the primary documentation for this software project. Further documentation is also maintained as docstrings within the source code files with the intention of conforming to the JSDoc 3 format.
- Google returns "OVER_REQUEST_LIMIT" errors even though the program's throttle'd to 8QPS, or 80% of their stated limit.
- The photos come form Flickr's search API and might not be relevant to the entries under which they appear.
- "use strict" throws irresolvable errors. Namely, when I assign
var self=this
, subsequent property assignments toself
such asself.query = ko.observable()
cause errors.