First of all, great library! Intuitive and simple - loving it.
One thing i noticed is that tiles are being loaded when calling the render() method - which makes sense, as we can add elements on the map, which may change the bounding box.
However, the retrieved tiles could be stored in some local user directory for caching, so not every render requests a tile from an online source, which would reduce the server load and the number of misses (i.e. request failed [?]).
First of all, great library! Intuitive and simple - loving it.
One thing i noticed is that tiles are being loaded when calling the
render()method - which makes sense, as we can add elements on the map, which may change the bounding box.However, the retrieved tiles could be stored in some local user directory for caching, so not every
renderrequests a tile from an online source, which would reduce the server load and the number of misses (i.e.request failed [?]).