hello,i have this code to zoom to selected point in my datagrid : MapPoint myPoint = g.Geometry as MapPoint;
g.Select();
if (myPoint != null)
{
Envelope env = new Envelope(myPoint.X - 1000, myPoint.Y - 1000, myPoint.X + 1000, myPoint.Y + 1000);
MyMap.ZoomTo(env);
}
but i want to change this zoom, where can i edit ??