diff --git a/.gitignore b/.gitignore index 0992f5e..4283e8f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ node_modules/ -*.svg \ No newline at end of file +*.svg +test.js \ No newline at end of file diff --git a/test.js b/test.js deleted file mode 100644 index 6d83557..0000000 --- a/test.js +++ /dev/null @@ -1,9 +0,0 @@ -const DottedMap = require('./index.js'); - -const map = new DottedMap({ height: 100, grid: 'diagonal' }); - -const pinColor = '#D6FF79'; - -map.addPin({ lat: 48.85, lng: 2.35, svgOptions: { color: pinColor, radius: 0.22 } }); - -console.log(map.getSVG({ radius: 0.22, color: '#423B38', shape: 'circle', backgroundColor: '020300' }));