Created
March 20, 2018 22:06
-
-
Save ToeJamson/117b62532ffed290b68dd7fd79ea94af to your computer and use it in GitHub Desktop.
location
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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