Skip to content

Commit

Permalink
Increase complexity of sample data (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
supersonicclay committed Mar 21, 2019
1 parent 40538bf commit b102c32
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion examples/deck/example.js
Expand Up @@ -198,7 +198,12 @@ export default class Example extends Component<
this.setState({
testFeatures: {
type: 'FeatureCollection',
features: [circle([-122.45, 37.77], 5, { steps: 10000 })]
features: [
circle([-122.45, 37.81], 4, { steps: 5000 }),
circle([-122.33, 37.81], 4, { steps: 5000 }),
circle([-122.45, 37.73], 4, { steps: 5000 }),
circle([-122.33, 37.73], 4, { steps: 5000 })
]
},
selectedFeatureIndexes: []
});
Expand Down

0 comments on commit b102c32

Please sign in to comment.