Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save meteormanaged/2f1a75579a901412b68362bd90115e6f to your computer and use it in GitHub Desktop.
Save meteormanaged/2f1a75579a901412b68362bd90115e6f to your computer and use it in GitHub Desktop.
// partial code
// You can tighten this up
return {
setPosition: setPosition,
getPosition: getPosition,
incrPosition: incrPosition,
decrPosition: decrPosition,
resetPosition: resetPosition,
addMarker: addMarker,
nextLocationShow: nextLocationShow,
prevLocationShow: prevLocationShow,
render: render
};
// Like this
return {
setPosition,
getPosition,
incrPosition,
decrPosition,
resetPosition,
addMarker,
nextLocationShow,
prevLocationShow,
render,
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment