Skip to content
This repository has been archived by the owner on Jan 20, 2018. It is now read-only.

Commit

Permalink
New map and maps now use SSL
Browse files Browse the repository at this point in the history
  • Loading branch information
turtles2 committed Mar 11, 2016
1 parent 24df53e commit bf19c63
Show file tree
Hide file tree
Showing 8 changed files with 392 additions and 10 deletions.
Empty file modified .gitignore
100644 → 100755
Empty file.
2 changes: 2 additions & 0 deletions link.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@
<a href="#"><i class="fa fa-link"></i> <span>Link Management</span> <i class="fa fa-angle-left pull-right"></i></a>
<ul class="treeview-menu">
<li><a href="addlink.php">Add a Link</a></li>
<li><a href="maplinks.php">Map Links</a></li>
</ul></li>
<li><a href="createdevice.php">Add a Device to Inventory</a></li>
<li><a href="viewdeviceinventory.php">View Device Inventory</a></li>
Expand All @@ -94,6 +95,7 @@
<li><a href="createsite.php">Create a Site</a></li>
<li><a href="mapsites.php">Map Sites</a></li>
<li><a href="maplinks.php">Map Links</a></li>
<li><a href="mapdump.php">Map Everything</a></li>
<li><a href="drawcova.php">Draw Coverage</a></li>
<li><a href="mapcov.php">Map Coverage</a></li>
<li><a href="linkgear.php">Link a Device to a Site</a></li>
Expand Down
4 changes: 2 additions & 2 deletions mapcov.php
Original file line number Diff line number Diff line change
Expand Up @@ -235,9 +235,9 @@
var map = L.map('map').setView([$mapcenterlat, $mapcenterlon], $mapzoom);";
?>
// load a tile layer
L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
{
attribution: '&copy; <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>',
attribution: '&copy; <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a>',

}).addTo(map);

Expand Down
4 changes: 2 additions & 2 deletions mapcus.php
Original file line number Diff line number Diff line change
Expand Up @@ -235,9 +235,9 @@
var map = L.map('map').setView([$mapcenterlat, $mapcenterlon], $mapzoom);";
?>
// load a tile layer
L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
{
attribution: '&copy; <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>',
attribution: '&copy; <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a>',

}).addTo(map);

Expand Down
Loading

0 comments on commit bf19c63

Please sign in to comment.