0.0.5 • Published 2 years ago

ol-table v0.0.5

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

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>`;
0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago