Skip to content

Commit

Permalink
Merge pull request #134 from eusonlito/patch-1
Browse files Browse the repository at this point in the history
Replace http with https in demo/draw.html
  • Loading branch information
yohanboniface authored Dec 27, 2023
2 parents b848eb9 + 229e7fd commit fbca300
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions demo/draw.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

<p>
A dynamic demo of <a href="https://github.com/Leaflet/Leaflet.heat">Leaflet.heat</a>, a tiny and fast Leaflet heatmap plugin.
<iframe class="ghbtns" src="http://ghbtns.com/github-btn.html?user=Leaflet&amp;repo=Leaflet.heat&amp;type=watch&amp;count=true"
<iframe class="ghbtns" src="https://ghbtns.com/github-btn.html?user=Leaflet&amp;repo=Leaflet.heat&amp;type=watch&amp;count=true"
allowtransparency="true" frameborder="0" scrolling="0" width="90" height="20"></iframe>
</p>

Expand All @@ -28,13 +28,13 @@
-->
<script src="../dist/leaflet-heat.js"></script>

<script src="http://leaflet.github.io/Leaflet.markercluster/example/realworld.388.js"></script>
<script src="https://leaflet.github.io/Leaflet.markercluster/example/realworld.388.js"></script>
<script>

var map = L.map('map').setView([-37.82109, 175.2193], 16);

var tiles = L.tileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution: '&copy; <a href="http://osm.org/copyright">OpenStreetMap</a> contributors',
attribution: '&copy; <a href="https://osm.org/copyright">OpenStreetMap</a> contributors',
}).addTo(map);

addressPoints = addressPoints.map(function (p) { return [p[0], p[1]]; });
Expand Down

0 comments on commit fbca300

Please sign in to comment.