Created
October 10, 2017 06:26
-
-
Save yoadsn/f403c9e16f32d323a146e83a71efddb0 to your computer and use it in GitHub Desktop.
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
| const center = { | |
| lat: 0, | |
| lng: 0 | |
| }; | |
| const angle = (Math.random() - 0.5) * 360; | |
| const distance = Math.random() * 50; | |
| const point = getPointOnRadius(center, distance, angle); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment