Skip to content

Commit dc34582

Browse files
authored
Merge pull request #639 from ocefpaf/update_leaflet
update to leafet 1.1.0
2 parents cdca018 + 14cb744 commit dc34582

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
~~~~~
33
- Experimental support for a static png output (ocefpaf #634)
44
- Added support for subdomains options in TileLayer (damselem #623)
5+
- Updated to leaflet 1.1.0 (ocefpaf #639)
56

67
0.3.0
78
~~~~~

folium/map.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
_default_js = [
3030
('leaflet',
31-
'https://unpkg.com/leaflet@1.0.1/dist/leaflet.js'),
31+
'https://unpkg.com/leaflet@1.1.0/dist/leaflet.js'),
3232
('jquery',
3333
'https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js'),
3434
('bootstrap',
@@ -43,7 +43,7 @@
4343

4444
_default_css = [
4545
('leaflet_css',
46-
'https://unpkg.com/leaflet@1.0.1/dist/leaflet.css'),
46+
'https://unpkg.com/leaflet@1.1.0/dist/leaflet.css'),
4747
('bootstrap_css',
4848
'https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css'),
4949
('bootstrap_theme_css',

folium/templates/fol_template.html

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
<head>
33
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
44
<script>L_PREFER_CANVAS=false; L_NO_TOUCH=false; L_DISABLE_3D=false;</script>
5-
<script src="https://unpkg.com/leaflet@1.0.1/dist/leaflet.js"></script>
5+
<script src="https://unpkg.com/leaflet@1.1.0/dist/leaflet.js"></script>
66
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
77
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
88
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
99
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.0.0/leaflet.markercluster-src.js"></script>
1010
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.0.0/leaflet.markercluster.js"></script>
1111

12-
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.0.1/dist/leaflet.css" />
12+
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.1.0/dist/leaflet.css" />
1313
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"/>
1414
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css"/>
1515
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css"/>
@@ -86,4 +86,3 @@
8686
{% endfor %}
8787

8888
</script>
89-

0 commit comments

Comments
 (0)