Thank you both for your help. It is for a simple test application. I made this MouseMove event on a PictureBox that holds the map image. This is how my solution looks then:<br />
<div style="font-family: Courier">
<span style="color:blue;">private</span> void pictureBox1_MouseMove(object sender, MouseEventArgs e)<br />
{<br />
&nbsp;&nbsp;<span style="color:blue;">int</span> centerx = pictureBox1.Width / 2;<br />
&nbsp;&nbsp;<span style="color:blue;">int</span> centery = pictureBox1.Height / 2;<br />
&nbsp;&nbsp;<span style="color:blue;">double</span> ratio = 0.0254 / map.DisplayDpi * map.ViewScale;<br />
&nbsp;&nbsp;<span style="color:blue;">int</span> x = (<span style="color:blue;">int</span>)(map.ViewCenter.X + ((e.X - centerx)*ratio));<br />
&nbsp;&nbsp;<span style="color:blue;">int</span> y = (<span style="color:blue;">int</span>)(map.ViewCenter.Y - ((e.Y - centery)*ratio));<br />
&nbsp;&nbsp;ssx.Text = x.ToString();<br />
&nbsp;&nbsp;ssy.Text = y.ToString();<br />
}<br />
</div>
<br />
Hans...
        
<br/><hr align="left" width="300" />
View this message in context: <a href="http://osgeo-org.1803224.n2.nabble.com/MaestroAPI-3-or-4-How-do-I-get-corner-coordinates-of-a-RuntimeMap-tp7093318p7096708.html">Re: MaestroAPI 3 or 4 - How do I get corner coordinates of a RuntimeMap</a><br/>
Sent from the <a href="http://osgeo-org.1803224.n2.nabble.com/MapGuide-Users-f1803227.html">MapGuide Users mailing list archive</a> at Nabble.com.<br/>