Hi Dear
I want to Use UTM projection to Load My Tiles. I did it formerly through Mercator projection. This is my code to create tiles in mecator projection.
private const double cornerCoordinate = 20037508.3427892
private const int WKID = 102100;
TileInfo = new TileInfo()
{
Height = 256,
Width = 256,
Origin = new MapPoint(-cornerCoordinate, cornerCoordinate) { SpatialReference = new ESRI.ArcGIS.Client.Geometry.SpatialReference(WKID) },
Lods = new Lod[20]
};
double resolution = cornerCoordinate * 2 / 256;//180.0000 * 2 / 256;
the values in cornerCoordinate and WKID parameters is specialized for mercator projection. So, and it is my questions:
1: what are the values for cornercoordinate and WKID for UTM projection?
Unfortunately, I can not achieve suitable information in the net, please, Guide me.
thanks in advance