I want to create an app that will display position on some floor plan. Navigation is implementing via WiFi in certain way, I've done it and so now I have a problem of displaying floor plan.
It might be in some vector format, after surfing internet for some time I've decided that it must be svg file. I found some solutions, but it isn't working for me!
-
There is opportunity to display .svg files, but only "simple" files. It works fine only for file in tutorial, but not for any other
.svg
file (for example, some other file, that you'll create with Inkscape).So, I decided, that I'll parse
.svg
file, make DOM from it, somehow get objects and attributes and draw it via OpenGL ES. -
At first glance, very good solution, but there is a problem. Android has some "native" apache libraries and when I try to do something with batik, it throws
NoClassDefFoundError
, because it's searching not in batik libraries, but in "native" libraries.Of course, we can add source code in our project, take only batik parser for
.svg
files and edit it in some way, but there is a lot of work, with same success we can write our own parser. -
There is no trial version, but if we'll see description of how it works for svg files and android, we'll see that there is only rasterization of such files and that's all.
Is there any solution better than writing own parser? Did anyone come across this problem?
I would suggest using #1. Don't write your own parser. It's just going to be a huge headache.
How detailed does your floor plan have to be? android-svg supports SVG fairly well. It just doesn't have great support for filters or light sources. Your SVG isn't going to have those in them (I hope).
If you don't want to do that, look into quad trees. You can render out a huge image and break that down into a quadtree like format then only load the quads you require.
I've using yet another SVG for Android; seems it is relatively new.
GPLv3, CSS2 support, fonts, texts and spans, linear and radial gradients, SVG and SVGZ, initial filtering support, images from assets, from web and inline base64-encoded images. Fastest from all I've tried.
Of course filters support might be better, but except this it works well and even displays 20-megabytes SVG files.
I have authored an SVG libaray for android the website is http://www.vectoroid.com
the main thing missing is SVG arc support this is currently fixed and will be in a release in the near future.
I am looking for feedback on it, as i have been working on it for about a year. So if you have any please do tell ...