Getting Started Documentation
Add some more documentation on getting started.
- Building/Editing the demo
- npm
- Adding new/custom DrawnItems
- Handling Mouse Actions
- Co-ordinate System
Hi , demo is brilliant ! docs ,too. I wonder what tools did you use to generate the modules-struct and related api docs? It looks good , seems auto-generated..
@alex2wong Thanks,
I used JSdoc with a customized template to generate my Angular/Bootstrap page.
Can see the build command in package.json, which also points out the embedded custom template.
"jsdoc": "jsdoc -t ./jsdoc-template -r ./src -d ./target/jsdoc"
Then the generated page is linked in gh-pages/src/app/app.js
app_jsdoc = require('../../../target/jsdoc/jsdoc'), //This is generated
It has been on the back burner to extract the template out as a separate project, but I've also switched from Angular to React so I'd want to switch that out at the same time.
good, thanks. I will have a try : )