Releases: banesullivan/localtileserver
Releases · banesullivan/localtileserver
Folium Tile Layers
Now you can easily create tile layers for viewing with Folium!
from localtileserver import get_folium_tile_layer
from localtileserver import TileClient
from folium import Map
# First, create a tile server from local raster file
tile_client = TileClient('~/Desktop/TC_NG_SFBay_US_Geo.tif')
# Create folium tile layer from that server
t = get_folium_tile_layer(tile_client)
m = Map(location=tile_client.center())
m.add_child(t)
m
folium.mov
Renamed to localtileserver
I decided to rename the package to localtileserver
to simplify installation and have a name consistent with the scope of package.
ipyleaflet ROI extraction
Now included are some prebaked UI controls for ipyleaflet that let you easily extract ROIs. Take a look at the example in the README.
ipyleaflet-roi.mov
CesiumJS Web Viewer
The default viewer in the included web app now uses CesiumJS!