Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion mapboxgl/viz.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import codecs
import json
import os
import warnings

from IPython.core.display import HTML, display

Expand Down Expand Up @@ -258,7 +259,9 @@ def show(self, **kwargs):
map_html = self.as_iframe(html)

# Display the iframe in the current jupyter notebook view
display(HTML(map_html))
with warnings.catch_warnings():
warnings.simplefilter("ignore")
display(HTML(map_html))

def add_unique_template_variables(self, options):
pass
Expand Down