Ejemplo n.º 1
0
        public static NFeature ToFeature(this Feature feature, bool shouldDispose = false)
        {
            if (feature == null)
            {
                return(null);
            }

            if (feature.Properties() == null || feature.Properties().Size() == 0)
            {
                feature.AddBooleanProperty("___naxam_temporary_fix___", new Java.Lang.Boolean(false));
            }

            var json = feature.ToJson();

            if (shouldDispose)
            {
                feature.Dispose();
            }

            return(JsonConvert.DeserializeObject <NFeature>(json));
        }