ol-table
v0.0.5
Published
A `table` extension for [OpenLayers](http://openlayers.org/).
Downloads
1
Readme
OpenLayers Custom Table
A table
extension for OpenLayers.
Usage
npm i ol-table
# or
pnpm i ol-table
import { OlTableControl } from "ol-table";
import "ol-table/index.css";
const table = new OlTableControl({
template: `<table>
<tr>
<th>Company</th>
<th>Contact</th>
<th>Country</th>
</tr>
<tr>
<td>Alfreds Futterkiste</td>
<td>Maria Anders</td>
<td>Germany</td>
</tr>
<tr>
<td>Centro comercial Moctezuma</td>
<td>Francisco Chang</td>
<td>Mexico</td>
</tr>
</table>`,
});
map.addControl(table);
// update template
table.template = `<table>
<tr>
<th>Company</th>
<th>Contact</th>
<th>Country</th>
</tr>
<tr>
<td>Alfreds Futterkiste</td>
<td>Maria Anders</td>
<td>Germany</td>
</tr>
</table>`;