-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Custom zoom step #16
Comments
Please take a look into this repository that I've created. It uses this library. I've added a webp decoder extension. The images are being returned. But the issue is, |
Not sure I have a lot of time to play with this. Is the zoom not working? What's the actual problem? What do you expect and what are you seeing? Is the performance problem because of JPEG and that's why you're adding webp support? Unrelated, what is the code that you had to add to support webp? Maybe PR that into this project with some tests and documentation so that we can turn that into something maintainable and in exchange you can get some help on your feature :) |
Performance issue is not because of webp, I've tested. Problems that I face are:
|
I added the webpdecoder framework provided by google here is the link.Also, added a small extension to UIImage for convenience. You could take a look on my repository. I use webp format for images because they are really low in size. 512x512 can stored in 4-10kb hence, the network load is less. Also, webp format has a lossless compression unlike jpg. |
There're 3 separate issues here. You should turn this issue into one of them and open separate issues for everything else. Unfortunately nobody here has time to integrate your webp support or to spend a lot of time debugging your app, however you can help us by making pull requests even for small things, I encourage you to do so. |
Okay, the major issue that I face is, converting the zoom step from 2x to 4x. |
I've been trying to skip level 12 between 11 and 13 in your Armory2014 sample project. But, I can't get it to work. Could you help me with this? |
Unfortunately I don't have any time to do this quickly, no promises, sorry. |
Just in case you get some time, please have a look I made a project with this repository. The issue is performance is very poor (rendering speed, initial rendering time is very high). He has made a Custom Tile Provider maybe you could understand the logic used. I tried using the same. But, it's not working yet. |
I created a project that requires to load webp tiled images from server and render it on catiledlayer. But, I'm facing a huge performance issue while zooming and panning. A lib in android named tileview has really good performance. I tried using your library on a new project. But, I'm stuck at two places. 1. Loading webp images from url.
2. Tiles available only at 4x zoom steps instead of 2x.
Please, help me achieve this.
The text was updated successfully, but these errors were encountered: