ADD: added APP-6 Symbols to the Map
This commit is contained in:
31
node_modules/milsymbol/index.js
generated
vendored
Normal file
31
node_modules/milsymbol/index.js
generated
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
/* ***************************************************************************************
|
||||
Creating the base of milsymbol
|
||||
******************************************************************************************
|
||||
To import all and have the same functionality as ordinary milsymbol, do the following:
|
||||
(Or just import the things that you need)
|
||||
*/
|
||||
|
||||
import {
|
||||
ms, // Base for milsymbol
|
||||
app6b, // APP6-B
|
||||
std2525b, // 2525B
|
||||
std2525c, // 2525C
|
||||
app6d, // APP6-D
|
||||
std2525d, // 2525D
|
||||
path2d // Pollyfill for Path2D in IE or node-canvas
|
||||
} from "./index.esm.js";
|
||||
|
||||
ms.addIcons(app6b);
|
||||
ms.addIcons(std2525b);
|
||||
ms.addIcons(std2525c);
|
||||
ms.addIcons(app6d);
|
||||
ms.addIcons(std2525d);
|
||||
ms.Path2D = path2d;
|
||||
|
||||
/* ***************************************************************************************
|
||||
This draws the symbol octagon, can be good for debugging.
|
||||
*************************************************************************************** */
|
||||
//import debug from "./symbolfunctions/debug.js";
|
||||
//ms.addSymbolPart(debug);
|
||||
|
||||
export default ms;
|
||||
Reference in New Issue
Block a user