public void Initialize(PointProjectQueryArgs args, string reprojectUrl = "")
        {
            Args = args;
            if (string.IsNullOrEmpty(reprojectUrl))
            {
                reprojectUrl = _geometryServiceConfiguration.Value.GetUrl();
            }

            ReprojectUrl = reprojectUrl;
        }
예제 #2
0
        public ReprojectPointsCommand(PointProjectQueryArgs args, string reprojectUrl = "")
        {
            Args = args;
            if (string.IsNullOrEmpty(reprojectUrl))
            {
                reprojectUrl = ConfigurationManager.AppSettings["geometry_service_url"];
            }

            ReprojectUrl = reprojectUrl;
        }