Skip to content

Commit 8335851

Browse files
authored
Update leaflet 1.2.0 (#693)
* allow notebook test to failure (until we move them to the gallery) * update leaflet to 1.2.0
1 parent acdb340 commit 8335851

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ matrix:
2626
env: TEST_TARGET=latest_branca
2727
- python: 3.6
2828
env: TEST_TARGET=latest_branca
29+
- python: 3.6
30+
env: TEST_TARGET=notebooks
2931

3032
before_install:
3133
- wget http://bit.ly/miniconda -O miniconda.sh

folium/map.py

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

3131
_default_js = [
3232
('leaflet',
33-
'https://cdn.jsdelivr.net/npm/leaflet@1.1.0/dist/leaflet.js'),
33+
'https://cdn.jsdelivr.net/npm/leaflet@1.2.0/dist/leaflet.js'),
3434
('jquery',
3535
'https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js'),
3636
('bootstrap',
@@ -43,7 +43,7 @@
4343

4444
_default_css = [
4545
('leaflet_css',
46-
'https://cdn.jsdelivr.net/npm/leaflet@1.1.0/dist/leaflet.css'),
46+
'https://cdn.jsdelivr.net/npm/leaflet@1.2.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 & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
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://cdn.jsdelivr.net/npm/leaflet@1.1.0/dist/leaflet.js"></script>
5+
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.2.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.js"></script>
1010

11-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet@1.1.0/dist/leaflet.css" />
11+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet@1.2.0/dist/leaflet.css" />
1212
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"/>
1313
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css"/>
1414
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css"/>

0 commit comments

Comments
 (0)