Hi I am trying to use worldmap in MBTiles format in my project which all the map icons and calculation are in 4326. But it seems that MBTiles map is in 3857.
For overall code flow please refer to MBTilesExtractor sample code.
I tried adding the following but it does not seems to work.
projection = new Proj4Projection(3857, 4326);
projection.Open();
…
thinkGeoMBTilesFeatureLayer.FeatureSource.Projection = projection;
What’s your suggestion to do the projection? Is there a 3857 version of MBTiles map?
Thanks,
Liang