- src/views/ directory (for adding new plugins)
- src/utils/utils.js (for adding plugin types)
- src/views/Application/two.vue or index.vue (for importing plugins)
- src/views/Application/components/ (for adding plugin configurations)
-
Create a New Plugin in phyloscape-geo
- Develop the new plugin and place its content in the
src/views/directory of thephyloscape-geoproject.
- Develop the new plugin and place its content in the
-
Configure and Import the Plugin in phyloscape-web
- Add the plugin type to
src/utils/utils.js. - Import the new plugin in either
two.vueorindex.vue. - Add the configuration for the new plugin in the
src/views/Application/components/directory.
- Add the plugin type to
-
Implement Interaction Between the Tree and the New Plugin
- Configure the code to enable interaction between the tree visualization and the new plugin (e.g., click events).