From b5dde3803bd13855864f7972155b21883a5bca63 Mon Sep 17 00:00:00 2001 From: Beppe Date: Mon, 26 Aug 2024 11:27:41 +0200 Subject: [PATCH] Aggiornamento nuovo marker per mappa --- assets/src/img/leaflet/place-marker.svg | 4 ++++ gulpfile.js | 4 ++++ 2 files changed, 8 insertions(+) create mode 100644 assets/src/img/leaflet/place-marker.svg diff --git a/assets/src/img/leaflet/place-marker.svg b/assets/src/img/leaflet/place-marker.svg new file mode 100644 index 000000000..38a4acb14 --- /dev/null +++ b/assets/src/img/leaflet/place-marker.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/gulpfile.js b/gulpfile.js index 6694ab806..db3836552 100755 --- a/gulpfile.js +++ b/gulpfile.js @@ -258,6 +258,10 @@ function leaflet() { config.nodeDirectory + '/leaflet.fullscreen/icon-fullscreen.svg', ]).pipe(gulp.dest(config.production + '/' + config.paths.images + '/leaflet')); + gulp.src([ + config.development + '/' + config.paths.images + '/leaflet/*', + ]).pipe(gulp.dest(config.production + '/' + config.paths.images + '/leaflet')); + return gulp.src([ config.nodeDirectory + '/leaflet/dist/images/*.{jpg,png,jpeg}', ])