Skip to content
Merged
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
25 changes: 12 additions & 13 deletions folium/templates/geojson_template.html
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,18 @@
attribution: '{{ attr }}'
}).addTo(map);

{% for style in geo_styles %}
{{ style }}
{% endfor %}

{% for layer in gjson_layers %}
{{ layer }}
{% endfor %}

{% for legend in map_legends %}
{{ legend }}
{% endfor %}

{% for mark, popup, add_mark in markers %}
{{ mark }}
{{ popup }}
Expand All @@ -97,19 +109,6 @@
{{ lat_lng_pop }}

{{ click_pop }}

{% for style in geo_styles %}
{{ style }}
{% endfor %}

{% for layer in gjson_layers %}
{{ layer }}
{% endfor %}

{% for legend in map_legends %}
{{ legend }}
{% endfor %}

};

</script>
Expand Down