Exemplo n.º 1
0
 public static System.Windows.Point AsWpfPoint(this IRI.Ham.SpatialBase.IPoint value)
 {
     return(new System.Windows.Point(value.X, value.Y));
 }
Exemplo n.º 2
0
        public void PanToGeographicPoint(IRI.Ham.SpatialBase.IPoint point, Action callback = null)
        {
            var webMercatorPoint = IRI.Ham.CoordinateSystem.MapProjection.MapProjects.GeodeticWgs84ToWebMercator(point);

            this.PanTo(webMercatorPoint, callback);
        }