File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -645,15 +645,15 @@ class GeoJsonTooltip(Tooltip):
645
645
Examples
646
646
--------
647
647
# Provide fields and aliases, with Style.
648
- >>> Tooltip (
648
+ >>> GeoJsonTooltip (
649
649
>>> fields=['CNTY_NM', 'census-pop-2015', 'census-md-income-2015'],
650
650
>>> aliases=['County', '2015 Census Population', '2015 Median Income'],
651
651
>>> localize=True,
652
652
>>> style=('background-color: grey; color: white; font-family:'
653
653
>>> 'courier new; font-size: 24px; padding: 10px;')
654
654
>>> )
655
655
# Provide fields, with labels off and fixed tooltip positions.
656
- >>> Tooltip (fields=('CNTY_NM',), labels=False, sticky=False)
656
+ >>> GeoJsonTooltip (fields=('CNTY_NM',), labels=False, sticky=False)
657
657
"""
658
658
_template = Template (u"""
659
659
{% macro script(this, kwargs) %}
You can’t perform that action at this time.
0 commit comments