1.0.0 • Published 2 years ago

planview v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Planview

HTML5 Canvas based library for generating and rendering diagrams.

npm

npm bundle size

Generating plan with points relative to image size.

The relative_points file can be found in the sources folder. It contains the config and the sections to be rendered.

<body>
    <img alt="img-1" id="img-1" />

    <script type="module">
        import { generateDiagram } from '../dist/planview.esm.js';
        import { relative_points } from './sources/relative_points.js';

        const img1 = document.getElementById('img-1');
        img1.src = generateDiagram(relative_points).diagram;
    </script>
</body>

The output of the above is following :

1.0.0

2 years ago

0.5.0

2 years ago

0.4.0

2 years ago

0.3.0

2 years ago

0.2.0

2 years ago

0.1.0

2 years ago