Skip to content

Instantly share code, notes, and snippets.

@jarodium
Created December 10, 2022 14:44
Show Gist options
  • Select an option

  • Save jarodium/172276a8b6cf837070ad9caeb5e328d7 to your computer and use it in GitHub Desktop.

Select an option

Save jarodium/172276a8b6cf837070ad9caeb5e328d7 to your computer and use it in GitHub Desktop.
turf-sandbox snippet
// simply return a valid GeoJSON and it will be rendered on the map
var center = [-7.9308417796178245, 37.020828075270785];
var radius = 5;
var options = {steps: 10, units: 'kilometers'};
var circle = turf.circle(center, radius, options);
console.log(circle.geometry)
return turf.featureCollection([circle]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment