This is my 1st question here, so lets move right to the point
I have a map in high resolution png format with geographic coordinates of the corners which I would like to integrate with Google Maps Api in my Android App.
What i have done so far:
I have cut the map in tiles 256x256 px and wrote an URITileProvider. It turns out that the map has an offset, is tilted and has to be re-sized
I found MapTiler and tried it out. It allows to set the corners coordinates and generates tiles. The current free version produces a watermark, so I have also checked the previous beta versions - but there the "y" tile coordinate is placed on the other hemisphere. Of course i could try to map them, but it doesn't solve my tilt problem
I also found and Android app CustomMaps. It is awesome! It does almost exactly what i want except it does not generate tiles. There is an option to take an image file, put it on the map by selecting points from the image and linking them to google map. It also provides a nice overview.
So here is my question:
Is there a free tool which combines both functionality form MapTiler and CustomMaps that I could use to align my image to map and split it into valid tiles?
I thought about editing the source image and by trial-and-error method, but it is definitely not the way to go here. Currently I'm thinking of creating my own tool, but logically thinking there has to be already a solution out there.