Protocol agnostic OSM URL

This commit is contained in:
piernov
2017-11-12 17:21:15 +01:00
parent 23e62c1e7e
commit 77daf18d8c
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -57,8 +57,8 @@
<script type="text/javascript"> <script type="text/javascript">
var map = L.map('map'); var map = L.map('map');
// create the tile layer with correct attribution // create the tile layer with correct attribution
var osmUrl='http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png'; var osmUrl='//{s}.tile.openstreetmap.org/{z}/{x}/{y}.png';
var osmAttrib='Map data © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors'; var osmAttrib='Map data © <a href="//openstreetmap.org">OpenStreetMap</a> contributors';
var osm = new L.TileLayer(osmUrl, {minZoom: 8, maxZoom: 17, attribution: osmAttrib}); var osm = new L.TileLayer(osmUrl, {minZoom: 8, maxZoom: 17, attribution: osmAttrib});
map.addLayer(osm); map.addLayer(osm);
var great_route = L.Routing.control({ var great_route = L.Routing.control({
+2 -2
View File
@@ -67,8 +67,8 @@
<script type="text/javascript"> <script type="text/javascript">
var map = L.map('come_map'); var map = L.map('come_map');
// create the tile layer with correct attribution // create the tile layer with correct attribution
var osmUrl='http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png'; var osmUrl='//{s}.tile.openstreetmap.org/{z}/{x}/{y}.png';
var osmAttrib='Map data © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors'; var osmAttrib='Map data © <a href="//openstreetmap.org">OpenStreetMap</a> contributors';
var osm = new L.TileLayer(osmUrl, {minZoom: 7, maxZoom: 18, attribution: osmAttrib}); var osm = new L.TileLayer(osmUrl, {minZoom: 7, maxZoom: 18, attribution: osmAttrib});
map.setView(new L.LatLng(43.6137, 7.07502),16); map.setView(new L.LatLng(43.6137, 7.07502),16);
marker = L.marker([43.61556, 7.07176], { marker = L.marker([43.61556, 7.07176], {
+2 -2
View File
@@ -98,8 +98,8 @@
<script type="text/javascript"> <script type="text/javascript">
var map = L.map('map'); var map = L.map('map');
// create the tile layer with correct attribution // create the tile layer with correct attribution
var osmUrl='http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png'; var osmUrl='//{s}.tile.openstreetmap.org/{z}/{x}/{y}.png';
var osmAttrib='Map data © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors'; var osmAttrib='Map data © <a href="//openstreetmap.org">OpenStreetMap</a> contributors';
var osm = new L.TileLayer(osmUrl, {minZoom: 8, maxZoom: 18, attribution: osmAttrib}); var osm = new L.TileLayer(osmUrl, {minZoom: 8, maxZoom: 18, attribution: osmAttrib});
// start the map on specified GPS Coords // start the map on specified GPS Coords
map.setView(new L.LatLng(${form.gps_coord.data}),15); map.setView(new L.LatLng(${form.gps_coord.data}),15);