opensciencemap / vtm

a vector-tile map library written in java - running on android, desktop and within the browser
GNU Lesser General Public License v3.0
238 stars 176 forks source link

TileCache not working with OkHttp #89

Open stleusc opened 10 years ago

stleusc commented 10 years ago

LwHttp used to write data to tilecache when set, OkHttp does not. Currently tile caching via TileCache is broken.

hjanetzek commented 10 years ago

OkHttpEngine does not implement setCache(), see the TODO in there. OkHttp provides its own response cache though which could be added to the engine.

hjanetzek commented 10 years ago

100