<html>
<head>
<meta content="text/html; charset=windows-1252"
http-equiv="Content-Type">
</head>
<body bgcolor="#FFFFFF" text="#000000">
On 26/04/17 19:14, Carlos Agullo wrote:<br>
<blockquote
cite="mid:CAB=o9iKR9DGcZRoyZVs5+NnbqetYA4z1L=8O5t+K2Hcb=rLGbA@mail.gmail.com"
type="cite">
<div dir="ltr">Muchas gracias.
<div><br>
</div>
<div>Aunque me sigue dando error, porque me dice : "<span style="color:darkgreen;font-size:14px;white-space:pre-wrap">'module' object has no attribute 'IFrame'" </span></div>
<div><span style="color:darkgreen;font-size:14px;white-space:pre-wrap">
</span></div>
<div>si pongo<b> iframe = folium.element.IFrame(html, width=200,
height=200)</b><br>
</div>
<div><b><br>
</b></div>
<div>Entonces me da este otro error.</div>
<div><br>
</div>
<div>
<pre style="box-sizing:border-box;overflow:auto;font-size:14px;padding:0px;margin-top:0px;margin-bottom:0px;line-height:inherit;word-break:break-all;word-wrap:break-word;color:rgb(0,0,0);border:0px;border-radius:0px;white-space:pre-wrap;vertical-align:baseline"><span class="gmail-ansicyan" style="box-sizing:border-box;color:steelblue"><span class="gmail-ansigreen" style="box-sizing:border-box;color:darkgreen"><span class="gmail-ansired" style="box-sizing:border-box;color:darkred">UnicodeDecodeError</span>: 'ascii' codec can't decode byte 0xc3 in position 4: ordinal not in range(128)
</span></span></pre>
</div>
<div><span class="gmail-ansicyan"
style="box-sizing:border-box;color:steelblue"><span
class="gmail-ansigreen"
style="box-sizing:border-box;color:darkgreen"><br>
</span></span></div>
</div>
</blockquote>
Parece que es un tema de versiones. ¿Versiones de Python y folium
que usas? Parece que usas Python 2 y un folium que no es la última
versión (yo tengo la 0.3.0 y la tuya debe ser la 0.2.x).<br>
<br>
Resolución rápida, elimina las tildes en '<font size="+2"><tt>línea</tt></font>'.<br>
<br>
En lugar de un <font size="+2"><tt>IFrame</tt></font> puedes usar
cualquier otro elemento HTML disponible. En la última versión de
folium tienes <font size="+2"><tt>Html</tt></font> que igual se
ajusta más a lo que necesitas.<br>
<br>
<a class="moz-txt-link-freetext" href="http://python-visualization.github.io/folium/module.html#element">http://python-visualization.github.io/folium/module.html#element</a><br>
<blockquote
cite="mid:CAB=o9iKR9DGcZRoyZVs5+NnbqetYA4z1L=8O5t+K2Hcb=rLGbA@mail.gmail.com"
type="cite">
<div dir="ltr">
<div><br>
</div>
</div>
<div class="gmail_extra"><br>
<div class="gmail_quote">El 26 de abril de 2017, 19:00,
kikocorreoso <span dir="ltr"><<a moz-do-not-send="true"
href="mailto:kikocorreoso@gmail.com" target="_blank">kikocorreoso@gmail.com</a>></span>
escribió:<br>
<blockquote class="gmail_quote" style="margin:0 0 0
.8ex;border-left:1px #ccc solid;padding-left:1ex">
<div bgcolor="#FFFFFF" text="#000000"><span class=""> On
26/04/17 18:25, Carlos Agullo wrote:<br>
<blockquote type="cite">
<div dir="ltr">Estoy trabajando con folium y me
gustaría poder dar formato a las etiquetas de los
puntos que agrego al mapa, pero a la hora de poner
comandos como /n o cosas así, me imprime
directamente /n en lugar de un salto de línea.
<div><br>
</div>
<div>¿hay forma de darle formato?</div>
</div>
<br>
</blockquote>
</span> Puedes usar un <font size="+2"><tt>folium.IFrame</tt></font>
en <font size="+2"><tt>folium.Popup</tt></font> .<br>
<br>
Échale un ojo a la documentación: <a
moz-do-not-send="true"
class="m_-9032425525080472457moz-txt-link-freetext"
href="http://python-visualization.github.io/folium/module/map.html#marker"
target="_blank">http://python-visualization.<wbr>github.io/folium/module/map.<wbr>html#marker</a><br>
<br>
Un ejemplo mínimo:<br>
<br>
<font size="+2"><tt>import folium</tt><tt><br>
</tt><tt><br>
</tt><tt>html = """<p>Línea 1</p><br></tt><tt><br>
</tt><tt><p>Línea 2</p><br></tt><tt><br>
</tt><tt><a href=<a moz-do-not-send="true"
class="m_-9032425525080472457moz-txt-link-rfc2396E"
href="https://pybonacci.org" target="_blank">"https://pybonacci.org"</a>><wbr>Link.</a>"""</tt><tt><br>
</tt><tt><br>
</tt><tt>iframe = folium.IFrame(html, width=200,
height=200)</tt><tt><br>
</tt><tt>popup = folium.Popup(iframe)</tt><tt><br>
</tt><tt>marker = folium.Marker((40,0), popup=popup)</tt><tt><br>
</tt><tt>map = folium.Map()</tt><tt><br>
</tt><tt>map.add_child(marker)</tt><tt><br>
</tt><tt>map.save("ejemplo,html")</tt></font><br>
<br>
Saludos.<span class=""><br>
<br>
<br>
<blockquote type="cite">
<fieldset
class="m_-9032425525080472457mimeAttachmentHeader"></fieldset>
<br>
<pre>______________________________<wbr>_________________
Python-es mailing list
<a moz-do-not-send="true" class="m_-9032425525080472457moz-txt-link-abbreviated" href="mailto:Python-es@python.org" target="_blank">Python-es@python.org</a>
<a moz-do-not-send="true" class="m_-9032425525080472457moz-txt-link-freetext" href="https://mail.python.org/mailman/listinfo/python-es" target="_blank">https://mail.python.org/<wbr>mailman/listinfo/python-es</a>
</pre>
</blockquote>
</span></div>
______________________________<wbr>_________________
Python-es mailing list
<a moz-do-not-send="true" href="mailto:Python-es@python.org">Python-es@python.org</a>
<a moz-do-not-send="true" href="https://mail.python.org/mailman/listinfo/python-es" rel="noreferrer" target="_blank">https://mail.python.org/<wbr>mailman/listinfo/python-es</a>
</blockquote></div>
</div>
<fieldset class="mimeAttachmentHeader"></fieldset>
<pre wrap="">_______________________________________________
Python-es mailing list
<a class="moz-txt-link-abbreviated" href="mailto:Python-es@python.org">Python-es@python.org</a>
<a class="moz-txt-link-freetext" href="https://mail.python.org/mailman/listinfo/python-es">https://mail.python.org/mailman/listinfo/python-es</a>
</pre>
</blockquote>
</body></html>