I'm having some issues converting my project into an MBTiles format. I'm trying to use gdalwarp to convert my main file to geotiff format, but I can't seem to get the center coordinate to how it is with my google maps custom map.
My center coordinate is latitude:-53.722541 and longitude:-100.625000 using Google Maps. I'm not sure how to use gdalwarp to ensure my center coordinate to remain at the same position. My files dimensions are 8192x8192.
The command I've been running is:
gdalwarp -s_srs EPSG:4326 -t_srs EPSG:3785 -r bilinear -te -4096 -4096 4096 4096 input.png output.tif
The SRS projection I'm using with TileMill is:
+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over
I'm at a loss at which of those two I would need to change in order to keep my markers properly placed, and not need to redo each and every one of them.
Thanks in advance for any support with this,