SuperMap.WindowsPhone.Mapping.Map.GetNextScale C# (CSharp) Method

GetNextScale() public method

${WP_mapping_Map_method_getNextScale_D}
public GetNextScale ( bool plus ) : double
plus bool ${WP_mapping_Map_method_getNextScale_param_plus}
return 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;
            }
        }