Skip to content

Instantly share code, notes, and snippets.

@ToeJamson
Created March 20, 2018 22:06
Show Gist options
  • Save ToeJamson/117b62532ffed290b68dd7fd79ea94af to your computer and use it in GitHub Desktop.
Save ToeJamson/117b62532ffed290b68dd7fd79ea94af to your computer and use it in GitHub Desktop.
location
<script>
window.lat = 37.7850;
window.lng = -122.4383;
function circlePoint(time) {
var radius = 0.01;
var x = Math.cos(time) * radius;
var y = Math.sin(time) * radius;
return {lat:window.lat + y, lng:window.lng + x};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment