If I know the lat/long, how can I zoom to that location? Let's say I want to zoom to -80.3862,25.9029 on center, with a 50-foot buffer. I tried the following code:
RectangleR newExtent = new RectangleR(new PointR(x1, y1), new PointR(x2, y2));
Map1.CurrentExtent = USARenderers.GetExtent(13, newExtent);
However, that seems to put me off into the ocean somwhere. Any advice?