Skip to content

Instantly share code, notes, and snippets.

@jarodium
Created December 10, 2022 14:44
Show Gist options
  • Save jarodium/0cfc2e094ea190495b2855ae3636775f to your computer and use it in GitHub Desktop.
Save jarodium/0cfc2e094ea190495b2855ae3636775f 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);
var smoothed = turf.polygonSmooth(circle, {iterations: 3})
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