From 41c3f01737b13a3da53884589cb3bac5dd0d0402 Mon Sep 17 00:00:00 2001 From: Stefan Breunig Date: Thu, 7 Mar 2013 09:06:15 +0100 Subject: [PATCH] point leaflet to use app engine to serve marker icons. App Engine does not allow @-signs in their filenames, so the marker will probably be broken on retina-displays. --- code/boot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/boot.js b/code/boot.js index 3ddff7e1..8776a6f6 100644 --- a/code/boot.js +++ b/code/boot.js @@ -276,7 +276,7 @@ function boot() { window.runOnSmartphonesBeforeBoot(); // overwrite default Leaflet Marker icon to be a neutral color - var base = 'http://breunigs.github.com/ingress-intel-total-conversion/dist/images/'; + var base = 'https://iitcserv.appspot.com/dist/images/'; L.Icon.Default.imagePath = base; window.iconEnl = L.Icon.Default.extend({options: { iconUrl: base + 'marker-green.png' } });