diff --git a/dist/images/marker-icon.png b/dist/images/marker-icon.png new file mode 100644 index 00000000..519b1c57 Binary files /dev/null and b/dist/images/marker-icon.png differ diff --git a/dist/images/marker-icon@2x.png b/dist/images/marker-icon@2x.png new file mode 100644 index 00000000..0865fd0c Binary files /dev/null and b/dist/images/marker-icon@2x.png differ diff --git a/dist/images/marker-shadow.png b/dist/images/marker-shadow.png new file mode 100644 index 00000000..d1e773c7 Binary files /dev/null and b/dist/images/marker-shadow.png differ diff --git a/images/marker-icon.png b/images/marker-icon.png new file mode 100644 index 00000000..519b1c57 Binary files /dev/null and b/images/marker-icon.png differ diff --git a/images/marker-icon@2x.png b/images/marker-icon@2x.png new file mode 100644 index 00000000..0865fd0c Binary files /dev/null and b/images/marker-icon@2x.png differ diff --git a/images/marker-shadow.png b/images/marker-shadow.png new file mode 100644 index 00000000..d1e773c7 Binary files /dev/null and b/images/marker-shadow.png differ diff --git a/plugins/draw-tools.user.js b/plugins/draw-tools.user.js index 7167d8cd..78e9afbe 100644 --- a/plugins/draw-tools.user.js +++ b/plugins/draw-tools.user.js @@ -30,8 +30,11 @@ window.plugin.drawTools = function() {}; window.plugin.drawTools.loadExternals = function() { var base = 'http://breunigs.github.com/ingress-intel-total-conversion/dist'; + //~ var base = 'http://0.0.0.0:8000/dist'; $('head').append(''); load(base+'/leaflet.draw.0.1.6.js').thenRun(window.plugin.drawTools.boot); + // overwrite default Leaflet Marker icon. + L.Icon.Default.imagePath = base + '/images'; }