SuperMap.Web.iServerJava6R.UGCVectorLayer.FromJson C# (CSharp) Method

FromJson() public static method

${iServerJava6R_UGCVectorLayer_method_FromJson_D}
public static FromJson ( System json ) : UGCVectorLayer
json System ${iServerJava6R_UGCVectorLayer_method_FromJson_param_jsonObject}
return UGCVectorLayer
        public static UGCVectorLayer FromJson(System.Json.JsonObject json)
        {
            if (json == null) return null;
            UGCVectorLayer vectorLayer = new UGCVectorLayer();
            vectorLayer.Style = ServerStyle.FromJson(json);
            return vectorLayer;
        }