This commit is contained in:
Emanuel Mutschlechner
2018-08-30 17:34:43 +02:00
parent 41dc97e50f
commit 1ca7864f9c
6 changed files with 15 additions and 16 deletions

View File

@@ -1,18 +1,5 @@
<?php <?php
/*
TODO:
https://www.bing.com/maps/embed-a-map
https://developers.google.com/maps/documentation/maps-static/intro
https://wiki.openstreetmap.org/wiki/OpenLinkMap#Embed_map_in_another_website
embed via iframe:
- bing
- osm?
javascript api:
- all
*/
return [ return [
/* /*

Binary file not shown.

Before

Width:  |  Height:  |  Size: 882 B

View File

@@ -1,5 +1,4 @@
{ {
"/js/index.js": "/js/index.js?id=fdadfceebf455b33ea99", "/js/index.js": "/js/index.js?id=fdadfceebf455b33ea99",
"/css/index.css": "/css/index.css?id=81569dd7736e102f4342", "/css/index.css": "/css/index.css?id=81569dd7736e102f4342"
"/img/marker.png": "/img/marker.png?id=654ced713d12ed4ae55d"
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 882 B

View File

@@ -5,6 +5,19 @@ namespace GoNoWare\Maps;
use Illuminate\Support\Facades\Blade; use Illuminate\Support\Facades\Blade;
use Illuminate\Support\ServiceProvider as BaseServiceProvider; use Illuminate\Support\ServiceProvider as BaseServiceProvider;
/*
TODO:
https://www.bing.com/maps/embed-a-map
https://developers.google.com/maps/documentation/maps-static/intro
https://wiki.openstreetmap.org/wiki/OpenLinkMap#Embed_map_in_another_website
embed via iframe:
- bing
- osm?
javascript api:
- all
*/
class MapsServiceProvider extends BaseServiceProvider class MapsServiceProvider extends BaseServiceProvider
{ {
/** /**

2
webpack.mix.js vendored
View File

@@ -4,6 +4,6 @@ mix.setPublicPath('public')
.setResourceRoot('resources') .setResourceRoot('resources')
.js('resources/js/index.js', 'js') .js('resources/js/index.js', 'js')
.sass('resources/sass/index.scss', 'css', {precision: 8}) .sass('resources/sass/index.scss', 'css', {precision: 8})
.copy('resources/img/marker.png', 'public/img') .copy('resources/img/*.png', 'public/img')
.version('img'); .version('img');