Reputation: 93
In this leafletjs quickstart guide, under the section titled "Working with popups", if you click the blue marker on the map, a popup shows up with the text "hello". Is it possible to have the popup contain, instead of just text, a table? Like a basic 1x2 html table that would be coded in HTML like this:
<table>
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
</tr>
</table>
Upvotes: 3
Views: 5115