simonw / datasette-cluster-map

Datasette plugin that shows a map for any data with latitude/longitude columns
Apache License 2.0
88 stars 16 forks source link

Add option to specify selector in which Leaflet is loaded. #6

Closed LBHELewis closed 4 years ago

LBHELewis commented 5 years ago

I am using a custom _table.html template. I want to surround the table with an element which has overflow-x: scroll so that my table scrolls within its container rather than filling the width of the page. But in this case the leaflet map is put inside the scrollable container too because the code is doing this:

let table = document.querySelector('table.rows-and-columns'); table.parentNode.insertBefore(el, table);

LBHELewis commented 5 years ago

I've put a PR here: https://github.com/simonw/datasette-cluster-map/pull/7