Reputation: 1968
I want to use the included tile packager from osmdroid's solution to use maps offline since Mobile Atlas Creator didn't work for me (I want 16x zoom levels which is not possible using this tool).
The instructions say that should run a .jar
file using a command line, but there are no .jar
files in the package and there are only source code files which when I run with netbeans IDE, gives me an error about unresolved dependency issues.
Anyone have any suggestions on how I can do this?
Upvotes: 2
Views: 1599
Reputation: 181
The answer given here didn't work for me as the .jar file always gave me a manifest (main class) error. So what I ended up doing was:
A window should have opened asking you for the parameters to download the tiles.
Got the procedure from this issue discussion.
Hope this helps anyone.
Upvotes: 4
Reputation: 469
Just call gradle compileJava
in OSMMapTilePackager
directory. The jar should be in the tagret
directory.
Upvotes: 2