SuperMap.WindowsPhone.Mapping.Map.GetNextScale C# (CSharp) 메소드

GetNextScale() 공개 메소드

${WP_mapping_Map_method_getNextScale_D}
public GetNextScale ( bool plus ) : double
plus bool ${WP_mapping_Map_method_getNextScale_param_plus}
리턴 double
        public double GetNextScale(bool plus)
        {
            if (this.Dpi != 0.0)
            {
                double newRes = this.GetNextResolution(plus);
                return ScaleHelper.ScaleConversion(newRes, this.Dpi, this.CRS);
            }
            else
            {
                return double.NaN;
            }
        }